Skip to content

Latest commit

 

History

History
57 lines (36 loc) · 1.55 KB

README.md

File metadata and controls

57 lines (36 loc) · 1.55 KB

dealer

Build Deploy

Dealer is the backend for the ReSupply application

Contributing

Make sure you follow the CONTRIBUTING.md guidelines before making changes to the project.

Documentation

Document Description
docs/Database.md Database documentation including schemas, triggers and procedures
docs/CICD.md CICD documentation.
Deploy.md Deployment manual

Development

Virtual environment

Make sure you have a virtual environment.

python -m venv venv && ./venv/scripts/activate

Install dependencies

pip install -r requirements.txt

Services

To start the redis and postgres service in the localhost run:

docker compose up -d

Then you can run the application with:

./dev.ps1

Testing API

For testing purpose you can deploy a testing API using:

docker compose -f ./api-test.docker-compose.yaml up -d