add all env vars that are needed
This commit is contained in:
parent
6382c0a851
commit
7ac5737dc0
3 changed files with 12 additions and 7 deletions
|
@ -12,6 +12,7 @@ cat_db_port: 5432
|
|||
cat_git_destination: "/home/{{ cat_user }}/cat_src"
|
||||
|
||||
cat_app_port: 3000
|
||||
cat_app_host: "http://localhost:{{ cat_app_port }}"
|
||||
|
||||
authorize_uri: "https://adams.ugent.be/oauth/oauth2/authorize/"
|
||||
access_token_uri: "https://adams.ugent.be/oauth/oauth2/token/"
|
||||
|
|
|
@ -2,11 +2,15 @@
|
|||
|
||||
# Run the java jar
|
||||
|
||||
DATABASE_URL="mysql://localhost:{{ cat_db_port }}/{{ cat_db_name }}?user={{ cat_db_user }}&password={{ cat_db_password }}"
|
||||
PORT="{{ cat_app_port }}"
|
||||
AUTHORIZE-URI="{{ authorize_uri }}"
|
||||
ACCESS-TOKEN-URI="{{ access_token_uri }}"
|
||||
OAUTH_CONSUMER-KEY="{{ oauth_consumer_key }}"
|
||||
OAUTH-CONSUMER-SECRET="{{ oauth_consumer_secret }}"
|
||||
export DATABASE_URL="mysql://localhost:{{ cat_db_port }}/{{ cat_db_name }}?user={{ cat_db_user }}&password={{ cat_db_password }}"
|
||||
export PORT="{{ cat_app_port }}"
|
||||
export APP_HOST="{{ cat_app_host }}"
|
||||
|
||||
export AUTHORIZE_URI="{{ authorize_uri }}"
|
||||
export ACCESS_TOKEN_URI="{{ access_token_uri }}"
|
||||
export OAUTH_CONSUMER_KEY="{{ oauth_consumer_key }}"
|
||||
export OAUTH_CONSUMER_SECRET="{{ oauth_consumer_secret }}"
|
||||
|
||||
export USER_API_URI="https://adams.ugent.be/oauth/api/current_user/"
|
||||
|
||||
java -jar {{ cat_git_destination }}/releases/cat.jar
|
||||
|
|
|
@ -13,7 +13,7 @@ mysql_users:
|
|||
|
||||
# --------------
|
||||
# Listed below are more default values of the mysql setup, these are not changed regularly
|
||||
# and thus are not listed in defaults with the "cat_" prefix.
|
||||
# and thus are not listed in defaults with the "cat_" prefix.a
|
||||
# If you want to knew all the tiny details of the mysql setup look (here)[https://github.com/geerlingguy/ansible-role-mysql]
|
||||
|
||||
# The home directory inside which Python MySQL settings will be stored, which Ansible will use when connecting to MySQL.
|
||||
|
|
Loading…
Reference in a new issue