- Fork the reppo and open terminal/cmd
- Clone the repo and change directory
$ git clone <Repo_link>
$ cd DocApp
- Create Virtualenvironment
$ pip install virtualenv
$ virtualenv env
$ source env/bin/activate
- Install requirements
$ pip install -r requirements.txt
- Set credentials(Put the credentials.json file in the base directory)
$ export GOOGLE_APPLICATION_CREDENTIALS='<credential-filename>.json'
- Migrate and makemigrations
$ python DocApp/manage.py migrate
$ python DocApp/manage.py makemigrations
- Runserver
$ python DocApp/manage.py runserver