https://github.com/bionetslab/digest-api
https://github.com/bionetslab/digest-api
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bionetslab/digest-api
- Owner: bionetslab
- License: gpl-3.0
- Created: 2022-02-22T10:22:33.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-10-07T14:47:36.000Z (8 months ago)
- Last Synced: 2025-10-07T15:24:38.644Z (8 months ago)
- Language: Python
- Size: 436 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Digest-web Backend service
Django based backend service for the DIGEST web-app.
## Setup
Pull all docker images from dockerhub
`docker-compose pull`
## Environment
Create a local copy of the environment file and do not push it to the git.
`cp docker-django-example.env.dev docker-django.env.dev`
Adjust the secret passwords, keys and settings accordingly. It will be used to hand this secret information to all
containers without writing them into the code.
## Rebuild
Build local docker images
`docker-compose build`
## Deployment
Create containers for all images defined in docker-compose.yml file and run detached
`docker-compose up -d`
## Development hints
Show running docker containers:
`docker ps`
Follow log of selected container:
`docker logs -f $container_name`