Everything is vanitee!!
- Introduction
- setup
- Run app
- requirements
If you like it, and find it irresistable, just snap, price tag and share it to all your friends; and the rest of the world.
This the production stage and all hands are welcome. For software developers to use you will need the following pre-installed:
- python 2.7
- pip 9.0.1
- Node.js
$ git clone https://github.com/matthewacha/vanitee.git
-
prepare virtual environment (with virtualenv you get pip, we'll use it soon to install requirements):
$ cd vanitee $ virtualenv --python=python2.7 venv $ source venv/bin/activate -
install requirements (Flask, ...) into virtualenv:
$ pip install -r requirements.txt -
create database tables
$ python manage.py init $ python manage.py migrate -
run development server:
$ ./manage.py runserver -
The site should now be running at `http://localhost:8000
-
For python code:
$ coverage run tests.py
for javascript:
$ node tests.js
check coverage:
$ istanbul cover tests.js