Custom genetically modified organisms database developed to support the Congento network.
| Compose file | Usage |
|---|---|
docker-compose.yml |
Launch a development server |
Clone this repository and sync its submodules.
git clone git@github.com:fchampalimaud/gentos.git
git pull --recurse-submodules
git submodule update --init --recursiveConfigure the development environment from the example provided
cp .env.example .envBuild the image and launch it. To create an admin user or run any command inside the container, see the examples below.
docker-compose build
docker-compose up
docker-compose exec django pipenv run python manage.py createsuperuserYou may also load a fixture with initial data:
docker-compose exec django pipenv run python manage.py loaddata initial_data| Service | Address |
|---|---|
| Django | http://localhost:8000 |
| MailHog | http://localhost:8025 |
...
ACCOUNT_ALLOW_REGISTRATION (=True)
...