A project by Valentin Kuba, Sebastian Schmid & Michael Troger.
npm install
- Setup your database and link it in a file called
config/database.js
like:module.exports = { host: YOUR-HOST, user: YOUR-USER, password: YOUR-PASSWORD, database: YOUR-DATABASE };
- Setup your SMTP server for sending emails in a file called
config/email.js
like:module.exports = { host: YOUR-HOST, port: YOUR-PORT, auth: { user: YOUR-USERNAME, pass: YOUR-PASSWORD } };
- Setup your Redis database for session storage in a file called
config/redis.js
like:module.exports = { host: YOUR-HOST, port: YOUR-PORT, pass: YOUR-PASSWORD };
npm start