Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 1.09 KB

README.md

File metadata and controls

39 lines (27 loc) · 1.09 KB

Stories in Ready

HardwareLab

Django based hardware inventory management system

Installation

Requirements

  • pip - instructions here
  • virtualenvwrapper - instructions here
  • npm - instructions here
  • bower - instructions here

Quick setup

$ mkvirtualenv hardwarelab
$ workon hardwarelab
(hardwarelab) $ pip install -r requirements.txt
(hardwarelab) $ bower install

(hardwarelab) $ python manage.py makemigrations
(hardwarelab) $ python manage.py migrate
(hardwarelab) $ python manage.py createsuperuser

(hardwarelab) $ python manage.py runserver

Now, open http://127.0.0.1:8000/admin.

Usage

  • To run on localhost:

    $ workon hardwarelab
    (hardwarelab) $ python manage.py runserver