-
Notifications
You must be signed in to change notification settings - Fork 7
/
development.ini
105 lines (86 loc) · 2.89 KB
/
development.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
###
# app configuration
# https://docs.pylonsproject.org/projects/pyramid/en/latest/narr/environment.html
###
[app:main]
use = egg:FCMS
pyramid.reload_templates = true
pyramid.debug_authorization = false
pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.default_locale_name = en
pyramid.includes =
pyramid_debugtoolbar
sqlalchemy.url = sqlite:///%(here)s/FCMS.sqlite
retry.attempts = 3
# capiURL - The URL for Commander API. companion.orerve.net is the main API URL.
capiURL = https://pts-companion.orerve.net
# authURL - The URL for Oauth2 authentication. You shouldn't need to change this.
authURL = https://auth.frontierstore.net
# redirectURL - The redirection URL for your OAuth2 callback. Replace the hostname/port with your
# public facing domain name
redirectURL = http://dev.fleetcarrier.space:6543/oauth/callback
# client_id - Your Frontier API key.
client_id = clientidgoeshere
# client_secret - Your Frontier API key's secret.
client_secret = clientsecretgoeshere
# session_secret - A random string used to seed session cookies.
session_secret = mysessionsecret
# auth_secret - A (random) string used to seed authentication tickets.
auth_secret = myauthsecret
# crypt_method - Password crypt method. argon2 is the most secure, but requires library support.
# If you can't use argon2, you should probably use bcrypt.
crypt_method = argon2
# Base path for storing user uploaded files. Should be inside FCMS/storage/
storage.base_path = /Users/kenne/PycharmProjects/FCMS/FCMS/storage/
# Allowed file extensions for storage. You should probably not change this.
storage.extensions = images
# Base URL for images. Should be the static route for the storage space defined above.
storage.base_url = http://dev.fleetcarrier.space:6543/storage/
# By default, the toolbar only appears for clients from IP addresses
# '127.0.0.1' and '::1'.
# debugtoolbar.hosts = 127.0.0.1 ::1
[pshell]
setup = FCMS.pshell.setup
###
# wsgi server configuration
###
[alembic]
# path to migration scripts
script_location = FCMS/alembic
file_template = %%(year)d%%(month).2d%%(day).2d_%%(rev)s
# file_template = %%(rev)s_%%(slug)s
[server:main]
use = egg:waitress#main
listen = localhost:6543
###
# logging configuration
# https://docs.pylonsproject.org/projects/pyramid/en/latest/narr/logging.html
###
[loggers]
keys = root, FCMS, sqlalchemy
[handlers]
keys = console
[formatters]
keys = generic
[logger_root]
level = INFO
handlers = console
[logger_FCMS]
level = DEBUG
handlers =
qualname = FCMS
[logger_sqlalchemy]
level = WARN
handlers =
qualname = sqlalchemy.engine
# "level = INFO" logs SQL queries.
# "level = DEBUG" logs SQL queries and results.
# "level = WARN" logs neither. (Recommended for production systems.)
[handler_console]
class = StreamHandler
args = (sys.stderr,)
level = NOTSET
formatter = generic
[formatter_generic]
format = %(asctime)s %(levelname)-5.5s [%(name)s:%(lineno)s][%(threadName)s] %(message)s