mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-16 05:39:24 +00:00
14 lines
616 B
Python
14 lines
616 B
Python
from .version import __version__
|
|
from .version import __majorversion__
|
|
from .version import __releaseversion__
|
|
from .version import __tier__
|
|
|
|
if __tier__ == 'alpha':
|
|
# Alpha versions will work against the staging server so that they
|
|
# can access new APIs etc that will only be available there. The staging
|
|
# servers have resource constraints but should be okay for limited use.
|
|
KeymanComUrl = 'https://staging-keyman-com.azurewebsites.net'
|
|
KeymanApiUrl = 'https://staging-api-keyman-com.azurewebsites.net'
|
|
else:
|
|
KeymanComUrl = 'https://keyman.com'
|
|
KeymanApiUrl = 'https://api.keyman.com'
|