Flask Inventory is an attempt to create an inventory management system for a small business using the flask framework. Currently the project is under heavy development and not ready for use.
- Activate a virtualenv
- Install the requirements
$ pip install -r requirements.txt
Update config.py, and then run:
$ export APP_SETTINGS="config.DevConfig"
Run setup.sh to setup the database and add an admin user.
$ ./setup.sh
Start the webserver:
$ python manage.py runserver
You should then be able to view the application in the brower. To access the admin section login with:
Username: ad@min.com
Password: admin_user
Without coverage:
$ python manage.py test
With coverage:
$ python manage.py cov