23 lines
769 B
INI
23 lines
769 B
INI
# Copy this file to options.ini to change settings
|
|
|
|
[General]
|
|
# You MUST change this for production. Not doing so is a major vulnerability
|
|
secret_key=5up3r s3cr3t k3y
|
|
|
|
#Changes where the site stores it's data
|
|
#See https://github.com/kennethreitz/dj-database-url
|
|
#For configuration details
|
|
database=sqlite:///database.sqlite3
|
|
|
|
[OAuth]
|
|
#The root of the oauth endpoint you are using for oauth settings
|
|
token_endpoint=https://icynet.eu/oauth/
|
|
|
|
#The client id, client secret, and redirect url used in the confguration
|
|
#of your oauth client on the site that you plan to use for oauth.
|
|
#The redirect url should probably point to the appropriate view, and
|
|
#needs to be fully qualified.
|
|
client_id=CLIENT ID HERE
|
|
client_secret=CLIENT SECRET HERE
|
|
redirect_url=REDIRECT URL HERE
|