This is a sample application to manage an inventory.
- Python
- Django
- PostgreSQL
Clone the repository:
$ https://github.com/anushajp/sample_ims.gitCreate a virtual environment(python3) and activate it:
Then install the dependencies:
(env)$ pip install -r requirements.txtChange the directory to project directory and run the server
(env)$ cd sample_ims
(env)$ python manage.py runserver --settings=sample_ims.settings.dev
And navigate to http://127.0.0.1:8000.
Run migrations
(env)$ python manage.py migrate --settings=sample_ims.settings.dev
Create superuser
(env)$ python manage.py createsuperuser --settings=sample_ims.settings.dev