/pfam

Primary LanguageHTML

Pet Feeder And Monitor (PFAM)

User Guide to install and run the project

  • Firstly clone the repo using:

    git clone https://github.com/Vedant950/pfam.git
    
  • Then navigate to the pfam folder.

  • Make sure you have virual enviroment installed in your pc, if not you can download the same by using:

    pip install virtualenv
  • Then create a virtual enviroment using:

    virtualenv env
  • Activate the enviroment using:

    env\Scripts\activate
  • Install django using:

    pip install django
  • Then to get the database, so that the website can store the data, run:

    python manage.py makemigrations
    python manage.py migrate
  • Then create a super user, so that you can access the database. Execute the commoand and do as directed:

    python manage.py createsuperuser
  • Finally, to run the server:

    python manage.py runserver