Skip to content
Snippets Groups Projects
Select Git revision
  • 80bbba31d02b2c2abe17fd92b23e1e6c48a887e5
  • tardis default
  • online-lip-2020
  • ss18
  • ws18
  • master protected
  • ws17
  • ss17
  • ws16
  • ss16
  • ws15 protected
  • ss15 protected
  • ws14 protected
  • buildhauer protected
  • ss14 protected
15 results

graphviz.tex

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    default.yml 1011 B
    ---
    
    app_name: "{{ app.app }}"
    app_user: "{{ app.app }}"
    app_group: "{{ app.app }}"
    app_home: "/var/www/{{ app.app }}"
    app_path: "/var/www/{{ app.app }}"
    app_chdir: "{{ app_path }}"
    app_lang: python
    
    # Python specifics
    app_python_version: 3
    app_venv: "/var/www/{{ app.app }}/venv/"
    app_program: "{{ app.app }}.py"
    app_callable: app
    app_command: ""
    app_module: ''
    
    # Ruby specifics
    app_ruby_version: "2.5"
    app_rack: "{{ app_path }}/config.ru"
    app_gemfile: "{{ app_path }}/Gemfile"
    
    app_mountpoint: /
    app_service_env: []
    app_mules: 0
    app_enable_threads: false
    app_workers: 4
    app_uwsgi_options: []
    
    app_db_name: ''
    app_db_type: ''
    
    app_additional_software: []
    
    app_deploy_key: "{{ inventory_dir }}/files/deploy-keys/{{ app.app }}"
    app_git_url: ""
    app_git_version: HEAD
    app_git_pip: false
    app_git_pip_query: ''
    
    app_requirements_file: requirements.txt
    app_config_file: config.py
    app_secret_config: true
    app_secret_config_keys: []
    
    app_spooler: false
    app_spooler_interval: 30
    app_spooler_dir: "{{app_path}}/spooler"