Install python-3.7.2
and python-pip
. Follow the steps from the below reference document based on your Operating System.
Reference: https://docs.python-guide.org/starting/installation/
Reference: https://developer.intuit.com/app/developer/qbo/docs/build-your-first-app
# Install virtual environment
sudo pip install virtualenv
# Make a directory
mkdir envs
# Create virtual environment
virtualenv ./envs/
# Activate virtual environment
source envs/bin/activate
git clone "https://github.com/Manisha-Bayya/QuickBooks.git"
cd QuickBooks/
pip install -r requirements.txt
# open settings file
vim quickbooks/settings.py
# Edit Access token.
# Search for ACCESS_TOKEN section.
# Paste your access token there.
ACCESS_TOKEN = 'xxxxxxxxxxxxxx'
# save the file
# Make migrations
python manage.py makemigrations
python manage.py migrate
# Run the server
python manage.py runserver 0:8787
# your server is up on port 8787
Try opening http://localhost:8787 in the browser. Now you are good to go.