Skip to content

REST API, collecting points for finding QR codes around university campus

Notifications You must be signed in to change notification settings

kestarumper/QRquest-backend

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

QRquest

DAS competitive application about collecting achievements in form of QR codes.

REST api

Prerequisites

Backend Development

You can run once and nodeamon will restart node process on docker virtual machine on the fly upon detecting changes in ./backend/dist path.

Docker Image rebuild

Whenever you make major changes to files other than src (eg. package.json) - you have to (!!!) rebuild docker image using command:

docker-compose build

This will install node_modules from scratch to docker image.

Running

Execute these commands in ./backend directory.

Initialise

npm install

Start watching for changes

Typescript transpiler will automaticaly detect changes in .ts files in ./backend/src directory and this will trigger nodemon (if docker service is running) since ./backend/dist will be overwritten.

npm run watch

Start services (docker containers)

Backend service is available at localhost:3000.
This also starts Redis as standalone service which is only visible to other srvices in the same network qrnet. (see docker-compose.yml)

docker-compose up

Stop services

docker-compose down