To run the completed project in this folder, you need the following:
- Python (with pip) installed on your development machine. If you do not have Python, visit the previous link for download options. (Note: This tutorial was written with Python version 3.7.0 and Django version 2.1. The steps in this guide may work with other versions, but that has not been tested.)
- Either a personal Microsoft account with a mailbox on Outlook.com, or a Microsoft work or school account.
If you don't have a Microsoft account, there are a couple of options to get a free account:
- You can sign up for a new personal Microsoft account.
- You can sign up for the Office 365 Developer Program to get a free Office 365 subscription.
-
Open a browser and navigate to the Application Registration Portal. Login using a personal account (aka: Microsoft Account) or Work or School Account.
-
Select Add an app at the top of the page.
Note: If you see more than one Add an app button on the page, select the one that corresponds to the Converged apps list.
-
On the Register your application page, set the Application Name to Python Graph Tutorial and select Create.
-
On the Python Graph Tutorial Registration page, under the Properties section, copy the Application Id as you will need it later.
-
Scroll down to the Application Secrets section.
-
Select Generate New Password.
-
In the New password generated dialog, copy the contents of the box as you will need it later.
Important: This password is never shown again, so make sure you copy it now.
-
-
Scroll down to the Platforms section.
-
Select Add Platform.
-
In the Add Platform dialog, select Web.
-
In the Web platform box, enter the URL
http://localhost:8000/tutorial/callback
for the Redirect URLs.
-
-
Scroll to the bottom of the page and select Save.
-
Rename the
oauth_settings.yml.example
file tooauth_settings.yml
. -
Edit the
oauth_settings.yml
file and make the following changes.- Replace
YOUR_APP_ID_HERE
with the Application Id you got from the App Registration Portal. - Replace
YOUR_APP_PASSWORD_HERE
with the password you got from the App Registration Portal.
- Replace
-
In your command-line interface (CLI), navigate to this directory and run the following command to install requirements.
pip install -r requirements.txt
-
In your CLI, run the following command to initialize the app's database.
python manage.py migrate
-
Run the following command in your CLI to start the application.
python manage.py runserver
-
Open a browser and browse to
http://localhost:8000/tutorial
. "# alpenels"