Skip to content

Latest commit

 

History

History
56 lines (33 loc) · 1.19 KB

README.md

File metadata and controls

56 lines (33 loc) · 1.19 KB

What is it?

This is the development buildout script for LFS.

It will create a complete developement evironment for LFS.

LFS is an online shop based on Python, Django and jQuery.

How to use it?

  1. Check it out from GitHub

    $ git clone git@github.com:diefenbach/lfs-buildout-development.git

  2. Change to the directory

    $ cd lfs-buildout-development

  3. Bootstrap buildout

    $ python bootstrap.py

  4. Run buildout

    $ bin/buildout -v

  5. Enter your database settings into lfs_project/settings.py

  6. Sync your database

    $ bin/django syncdb

  7. Initialize LFS

    $ bin/django lfs_init

  8. Start server

    $ bin/django runserver

  9. Browse to LFS

    http://localhost:8000

More Information