- Node.js
- Run
npm install
to install the required dependencies. - Add
HACKATHON_SECRET
environment variable for JWT token signing and verification. - Create
data
folder under root directory. - Create
users.data.js
insidedata
folder and add example users with the following format:
javascript
module.exports = [
{
email: 'hack@wpi.edu',
password: 'password',
role: 'admin',
}
];
To start development server, run:
HACKATHON_SECRET=xxxxx PORT=8000 npm start
This repo is maintained user MIT license.
You can find the frontend here