Skip to content

Latest commit

 

History

History
34 lines (30 loc) · 627 Bytes

README.md

File metadata and controls

34 lines (30 loc) · 627 Bytes

DocApp

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