- add optional localbuildsettings.py - remove the 'jonatkins' and 'jonatkins-dev' from buildsettings.py - some devs were using them and it'll give them unexpected update behaviour - add a 'local' build - uses the public release for external resources (rather than a local web server as for local8000), but no distUrlBase. perfect for code-only changes - distUrlBase can now be None - no more wacky invalid URLs (the resourceUrlBase will become redundant once all resources are embedded, but that's still pending)
31 lines
1.1 KiB
Python
31 lines
1.1 KiB
Python
# settings file for builds.
|
|
|
|
# if you want to have custom builds, copy this file to "localbuildsettings.py" and make changes there.
|
|
|
|
buildSettings = {
|
|
# local: use this build if you're not modifying external resources
|
|
# external resources will be loaded from the public live release
|
|
'local': {
|
|
'resourceUrlBase': 'http://iitc.jonatkins.com/release',
|
|
'distUrlBase': None,
|
|
},
|
|
|
|
# local8000: if you need to modify external resources, this build will load them from
|
|
# the web server at http://0.0.0.0:8000/dist
|
|
'local8000': {
|
|
'resourceUrlBase': 'http://0.0.0.0:8000/dist',
|
|
'distUrlBase': None,
|
|
},
|
|
|
|
|
|
# if you want to publish your own fork of the project, and host it on your own web site
|
|
# create a localbuildsettings.py file containing something similar to this
|
|
# note: Firefox+Greasemonkey require the distUrlBase to be "https" - they won't check for updates on regular "http" URLs
|
|
#'example': {
|
|
# 'resourceBaseUrl': 'http://www.example.com/iitc/dist',
|
|
# 'distUrlBase': 'https://secure.example.com/iitc/dist',
|
|
#},
|
|
|
|
|
|
}
|