- Front-end in React
- Back-end in Flask
- BDD MongoDB
- Swagger UI
Clone the project:
git clone https://github.com/Jeck0v/Cobalt-backend.git
Stating app with:
docker compose up --build
For Swagger:
http://localhost:5000/swagger/
For Mongo-Express:
http://localhost:8081/
The db is only initialized in the express-mongo
when the request is received, so when a user creates an account, the request creates the db with the user collection.
If you have mongo dependency failed to start: container mongo is unhealthy
or any error from storage
:
Please make this:
docker compose down -v
rm -rf storage/
docker compose up --build