Go-Social-Blogging-App

A Social-Blogging App developed with Golang & Mysql!!

Stars
31

Go-Social-Blogging-App

A Social-Blogging App developed with Golang & Mysql!!

Updated Version

Click here for mini-social-network created with Golang!!

Quick Links

  1. Screenshots
  2. Requirements
  3. Usage

Screenshots

Requirements

  1. Make sure you keep this project inside src/ of your Golang project folder.
  2. Following packages should be installed.
    1. httprouter
    2. negroni
    3. checkmail
    4. MySQL driver
    5. bcrypt
    6. sessions
    7. godotenv

Usage

  1. Open PHPMyAdmin, create a db & import db.sql.

  2. Install all the dependencies with npm or Yarn.

npm install

or

yarn
  1. Create a .env file & insert the above code. Replace values with yours!!
PORT=YOUR PORT (default: 2280) [STRING]
SESSION_SECRET=ANYTHING SECRET [STRING]
DB_USER=DB_USER [STRING]
DB_PASSWORD=DB PASSWORD [STRING]
DB=DB YOU JUST CREATE [STRING]
  1. My root folder name is Go-Social-Blog-App, if yours is different then go ahead & change it as it used for imports. It can be done easily by searching the whole project.

  2. Now run the app.

npm run start
  1. Run the app in browser.
localhost:[PORT] PORT=2280 (By default)
Related Projects