Skip to content

Latest commit

 

History

History
57 lines (34 loc) · 1.1 KB

README.rst

File metadata and controls

57 lines (34 loc) · 1.1 KB

License plate validator

Installation

$ # Clone repository
$ git clone git@github.com:deluge/license-plate.git

$ Create your virtualenv (recommended, use pyenv)
$ Go into project root
$ mkvirtualenv license-plate

$ # Activate Environment and install
$ workon license-plate
$ make devinstall

$ # run tests
$ make tests

Setup the database

Default databasename for development is license_plate_dev

$ python src/manage.py migrate

Staring the server & superuser

$ # Create a new super user
$ python src/manage.py createsuperuser

Now you can run the webserver and start using the site.

$ python src/manage.py runserver

This starts a local webserver on localhost:8000. To view the administration interface visit /admin/

Resources