53 lines
1.6 KiB
YAML
53 lines
1.6 KiB
YAML
---
|
|
# defaults file for ansible-rookeries
|
|
|
|
# Database soecific inforaation
|
|
rookeries_db:
|
|
db_name: rookeries
|
|
username: admin
|
|
password: password
|
|
host: localhost
|
|
port: 5984
|
|
|
|
|
|
# The mode of the setup. Setting to "dev" enables the use of a SMTP fake server to help with development.
|
|
rookeries_environ_type: dev
|
|
|
|
# TODO Clean up and simplify the configuration.
|
|
# Name of the rookeries app
|
|
rookeries_app_name: rookeries
|
|
rookeries_version: 0.5.0
|
|
|
|
# Rookeries deployment configuration
|
|
rookeries_app_hostname: localhost
|
|
rookeries_local_uwsgi_port: 8001
|
|
|
|
# TODO Clean up and factor out once better developed.
|
|
rookeries_deploy_source: "{{ rookeries_app_name }}-{{ rookeries_version }}-{{ rookeries_app_hostname }}"
|
|
rookeries_deploy_target: "{{ rookeries_app_name }}_{{ rookeries_app_hostname }}"
|
|
|
|
|
|
# The default configuration for running rookeries
|
|
rookeries_app_config:
|
|
|
|
# Basic environmental
|
|
rookeries_environmental_name: "Provisioned Env"
|
|
rookeries_debug: false
|
|
|
|
# Password salts + secrets
|
|
rookeries_password_salt: "secret"
|
|
rookeries_secret_key: "development"
|
|
|
|
# Database
|
|
rookeries_couchdb_database_uri: "http://{{ rookeries_db.username }}:{{ rookeries_db.password }}@{{ rookeries_db.host }}:{{ rookeries_db.port }}/"
|
|
rookeries_couchdb_database: "{{ rookeries_db.db_name }}"
|
|
|
|
# Mail server configuration
|
|
rookeries_mail_server: "smtp.localhost.net"
|
|
rookeries_mail_port: 25
|
|
rookeries_mail_username: "user"
|
|
rookeries_mail_password: "password"
|
|
rookeries_mail_default_sender: "admin@local_rookeries_install.localhost.net"
|
|
rookeries_mail_use_tls: false
|
|
rookeries_mail_use_ssl: false
|