Open
Description
Describe the bug
When we follow the manual installation process it seems that we are missing a .env
file with some default key to launch the database migration or the run server.
To Reproduce
Steps to reproduce the behavior:
- Clone the project
- Follow the manual installation
- You should have the error when trying to run the migration of the database
Expected behavior
I think we need two think to be clear and maintanable:
- Create a
.env.example
with the default ENV key we need
## GENERAL SETTINGS
DEBUG=True
SECRET_KEY=local
ALLOWED_HOSTS=127.0.0.1, localhost, 0.0.0.0
- Update the manual installation documentation to ask people to copy-paste the
.env.example
and rename it.env
.
Additional context
This problem is only for manual installation process and it's not related to the use of virtualenv.