-
Notifications
You must be signed in to change notification settings - Fork 15
Home
Roland edited this page Jul 23, 2020
·
7 revisions
You will need some basic understanding on docker and docker-compose.
Main application logic and database related dependencies you should look into before jumping into the project:
- socket.io for WebSocket communication
- express for REST API
- knex for DB selections and mutations
- pg for Postgres DB
You can find:
- DB related requests and mutations inside the
src/modelsfolder. - Socket communication handling in
src/socketio.js. - REST API endpoint handling in
src/app.js. - DB migrations and seeds inside the
datafolder.