Skip to content

sophiaqa/python_openidconnect_starter_app

 
 

Repository files navigation

Python: Getting Started

A barebones example of using Deauthorized authentication solution within a Django app.

Running Locally

Make sure you have Python installed properly. Also, install the Heroku CLI and Postgres.

$ git clone git@github.com:Deauthorized/python_openidconnect_starter_app.git
$ cd python_openidconnect_starter_app

# Setup Environment
$ pipenv install

# OR

$ conda env create && source activate deauthorized-python-sample

$ createdb python_getting_started

$ python manage.py migrate
$ python manage.py collectstatic

# Run dev server
$ heroku local

Your app should now be running on localhost:5000.

Deploying to Heroku

$ heroku create
$ git push heroku master

$ heroku run python manage.py migrate
$ heroku open

or

Deploy

Documentation

For more information about using Python on Heroku, see these Dev Center articles:

TODO: Add link to additional deauthorized documentation

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 69.1%
  • HTML 30.9%