Metagenedb
Django based project to build metagenomics genes catalog and tools to play with it and contact external services.
Run the services on your local machine
First usage
Settings for Django server
As you can see, there is not a single settings.py
file for the Django project but instead
several settings files that are located in the settings
directory which is supposed to be a module.
Therefore, you need to add an __init__.py
to this module and specify which settings you want to import.
For instance, if you want to have the development settings, configure the __init__.py
:
from .development import *
This is to allow different settings depending your environment. You can also keep all your credentials
in this __init__.py
file.