Program Silab.
-
Default environment is
Development, if you want to change toProductionchange environment setting onwsgi.pyandmanage.pytoAyasakura.settings.production, or you can add your own environment inAyasakura/Ayasakura/settings/. -
Use the package manager pip to install Nymphaea dependencies.
pip install script/requirements.txt- Migrate all tables to database, make sure you configure
your environmentfirst before do this part.
python manage.py migrate- For development .
python manage.py runserver- For Production (with gunicorn)
gunicorn Ayasakura.wsgi -w <number or workers> --bind <ip_address>:<port_destination> &Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
- Fork this git .
- Make a branch what-a-feature :
git checkout -b my-new-feature - Commit changes :
git commit -am 'Add some features' - Push branch to remote :
git push origin my-new-feature - Make a pull request
Please make sure to update tests as appropriate.