Open hisapy opened 8 years ago
With the current .env.example you can create an .env file and use the following command to start Phoenix server:
env $(cat .env | grep -v ^# | xargs) iex -S mix phoenix.server
You can override variables by adding them after reading the vars from .env
file. For example, in order to run some tests:
env $(cat .env | grep -v ^# | xargs) MIX_ENV=test mix test
We'll add detailed instructions to the README and close this issue ASAP.
In the Requirements section of the README it says
However, we can actually run this project without Docker and thus, change the advertised requirements.
PS: It would be even better if we can remove the -docker suffix from the project.