A platform to keep track of student activity
- Setup PostgreSQL
- Restore the DB dump to get the schema setup
psql -U "anirudhbs" "keepup" < keepup.backup
- Setup
config.js
at the project root directory
module.exports = {
token:
<slack token>,
postgres: {
USER: "<db user / role name>",
HOST: "<hostname>", // localhost
DATABASE: "<db name>", // keepup
PASSWORD: "<password>",
PORT: "<port>" // 5432
}
}
- Run
npm install
- Run
npm run start
andnpm run start-react