Skip to content

Latest commit

 

History

History
62 lines (39 loc) · 1.12 KB

README.md

File metadata and controls

62 lines (39 loc) · 1.12 KB

gentos

Custom genetically modified organisms database developed to support the Congento network.

Docker: configurations available

Compose file Usage
docker-compose.yml Launch a development server

Development

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

Deployment

...

Configuration

ACCOUNT_ALLOW_REGISTRATION (=True)

Notes

...