-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.yml
77 lines (72 loc) · 3.09 KB
/
settings.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
---
# Hostname. Used to determine the FQDN, for server settings, and in Django's settings file
# Django will disallow any HTTP requests not sent to this domain name ("localhost" is also allowed for convenience)
# this hostname is also used for OIDC return, so it must be set to what your browser actually displays in the title bar.
hostname: "test.example.com"
# Institution name. This will render in templates and settings in various places.
institution_name: Example Institution
# Administrator name and email
administrator:
name: "Local Administrator Full Name"
email: "[email protected]"
# Project-specific settings
project:
name: "My Project's Data Transfer Portal"
description: "A Site to Initiate Globus Data Transfers for My Project"
version: "0.1.0"
# Globus settings. To determine these, See README.md
globus:
client_id: null
secret_key: null
search_index: null
collections:
- id: null
name: Example collection
description: This collection is included as an example.
# Styling data
colors:
header: "#333333"
primary: "#AAAAFF"
secondary: "#AAAAAA"
surfaces:
- "#FFFFFF"
- "#EEEEEE"
- "#DDDDDD"
# HTML templates (UI partials)
# these paths are relative to this ansible role.
# The files can be altered to give you as much control as possible
# over the layout of the site and its functionality.
templates:
- name: Base template
template: ../templates/base.html
destination: /backend/templates/globus-portal-framework/v2/base.html
- name: Logo File
template: ../templates/identity/logo.png
destination: /backend/static/
- name: Header Block Template
template: ../templates/header.html
destination: /backend/templates/globus-portal-framework/v2/components/base-nav.html
- name: Footer Block Template
template: ../templates/footer.html
destination: /backend/templates/globus-portal-framework/v2/components/footer.html
- name: Main Page template
template: ../templates/main.html
destination: /backend/templates/globus-portal-framework/v2/landing-page.html
- name: Transfer Page
template: ../templates/transfers.html
destination: /backend/templates/globus-portal-framework/v2/components/transfer/home.html
- name: Getting Started Block Template
template: ../templates/getting_started_block.html
destination: /backend/templates/globus-portal-framework/v2/components/getting_started_block.html
- name: Documentation Block
template: ../templates/documentation_block.html
destination: /backend/templates/globus-portal-framework/v2/components/documentation_block.html
- name: Documentation Page
template: ../templates/documentation.html
destination: /backend/templates/globus-portal-framework/v2/components/documentation.html
- name: Documentation Overview
template: ../templates/documentation/overview.html
destination: /backend/templates/globus-portal-framework/v2/components/documentation/overview.html
- name: Documentation on Transfers
template: ../templates/documentation/transfers.html
destination: /backend/templates/globus-portal-framework/v2/components/documentation/overview.html