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 [email protected]:fchampalimaud/gentos.git
git pull --recurse-submodules
git submodule update --init --recursive
Configure the development environment from the example provided
cp .env.example .env
Build 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 createsuperuser
You 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)
...