Skip to content

Latest commit

 

History

History
80 lines (55 loc) · 2.67 KB

README.md

File metadata and controls

80 lines (55 loc) · 2.67 KB

Starter Weppy

Build Status Coverage Status Codacy Badge

Starter Weppy is a python web application starter kit built on the weppy framework. Current version is based on Weppy 0.6 with an MVC scaffolding. An api module, dev mode, and 100% test coverage are included out of the box.

TODO:

Run

Requirements:

  • Python 3.4+ or 3.5+

For automated pip and virtual env setup and creation, clone this repository and in your terminal do:

. ./setup.sh
python run.py

Otherwise, do:

pip install -r requirements.txt
python run.py

Docker

To make your application available at http://localhost/:

docker build -t starter-weppy .
docker run -it -p 80:8000 --rm --name starter-weppy starter-weppy

Develop

Running in development mode will enable debug pages, automatically create test, users in multiple states, and upon killing the app, those test users will automatically be deleted from the DB.

To start the app in development mode, do:

python run.py --dev

See starter_weppy/cli.py for cli commands.

Test

py.test -v -s --cov-report term-missing --cov=starter_weppy -r w tests

License

MIT © mijdavis2