Skip to content

Latest commit

 

History

History
30 lines (29 loc) · 705 Bytes

README.md

File metadata and controls

30 lines (29 loc) · 705 Bytes

installation steps:

  • install Git
  • install Python
  • install Sqlite
$ pip install --user pipenv
$ git clone https://github.com/ahbali/manageit.git
$ cd manageit
$ pipenv install
$ pipenv shell
$ python manage.py migrate
$ python manage.py createsuperuser
$ python manage.py runserver

updating steps:

$ cd manageit
$ git pull
$ pipenv install
$ pipenv shell
$ python manage.py migrate
$ python manage.py runserver