ardier16 / grate-api

[Work in progress] Server side of the gRate social network

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

gRate API

GitHub repo size David GitHub commit activity

The server side of the gRate social network

How to run

Clone the repository

Using SSH: git clone git@github.com:ardier16/grate-api.git

or

Using HTTPS: git clone https://github.com/ardier16/grate-api.git

Prepare the environment

Install Node.js & npm

Install MongoDB

Install Yarn

Run npm install -g yarn

Install all the dependencies

Go to the project folder and run yarn or yarn install

Create the configuration file

Go to /src folder and create a file config.js:

export default {
  // Secret key for encrypting the tokens
  secret: 'YOUR_SECRET_KEY',
  // MongoDB connection string
  dbConnectionString: 'mongodb://127.0.0.1:27017/grate_db',
  // Default application port
  port: 8080,
}

Start the project

Run yarn start

About

[Work in progress] Server side of the gRate social network

License:GNU General Public License v3.0


Languages

Language:JavaScript 100.0%