A Social-Blogging App developed with Golang & Mysql!!
- Make sure you keep this project inside
src/
of your Golang project folder. - Following packages should be installed.
-
Open PHPMyAdmin, create a db & import
db.sql
. -
Install all the dependencies with npm or Yarn.
npm install
or
yarn
- 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]
-
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.
-
Now run the app.
npm run start
- Run the app in browser.
localhost:[PORT] PORT=2280 (By default)