A Molten template for cookiecutter with a preference for a postgres backend
$ pip install cookiecutter
$ cookiecutter https://github.com/androiddrew/molten-cookiecutter
You will be asked for some basic information regarding your project (name, project name, etc.). This info will be used in your new project
$ cd <app_dir>
$ python -m venv env
$ source env/bin/activate
Follow the initial setup steps included in the project.
$ env ENVIRONMENT=test pytest -v
In a similar style to Django this cookiecutter provides a manage.py
module to assist you in your development. This script is simply assembled using the click library.
Excuting the script with no parameters will print a list of available operations.
$ python manage.py
If you have installed the dev dependencies you will have access to the werkzueg dev server. Do not use this server in production.
$ python manage.py runserver
MIT Licensed.
- Fixed failure in license selection.
- Added migrations.
- Changed testing fixtures.
- Added TOML settings file and .coveragerc file.
- Initial release.