-
Notifications
You must be signed in to change notification settings - Fork 5
/
copier.yml
95 lines (78 loc) · 1.99 KB
/
copier.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# questions
data_dir:
type: str
help: Where should the data be stored?
default: ./data
domain_name:
type: str
help: On which domain do you want to publish the services?
api_subdomain:
type: str
help: What is the API subdomain?
default: api
app_subdomain:
type: str
help: What is the app subdomain?
default: app
cloudflare_api_token:
type: str
secret: true
default: ""
help: Provide a Cloudflare API token with permission to configure the domain in the DNS service?
tunnel_name:
type: str
help: What is your Cloudflare Tunnel name?
default: llamatunnel
tunnel_id:
type: str
help: What is your Cloudflare Tunnel ID?
ollama_api_key:
type: str
help: What is your Ollama API key?
secret: true
default: "{{ 999999999999999999999999999999999|ans_random|hash('sha256')|urlencode }}"
ollama_url:
type: str
help: What is the local URL of the Ollama API?
default: "host.docker.internal:11434"
cloudflared_service_name:
type: str
help: What is the name of the Cloudflared service?
default: cloudflared
caddy_service_name:
type: str
help: What is the name of the Caddy service?
default: caddy
webui_service_name:
type: str
help: What is the name of the OpenWebUI service?
default: openwebui
webui_port:
type: int
help: On which port shall OpenWebUI listen (0 means openwebui is not exposed, directly)?
default: 3200
webui_secret_key:
type: str
help: What is the secret key for the OpenWebUI?
secret: true
default: "{{ 999999999999999999999999999999999|ans_random|hash('sha256')|urlencode }}"
publish_locally:
type: bool
help: Do you want to publish the tunnel locally on port 443?
default: true
network_name:
type: str
help: What is the name of the docker network?
default: llamatunnel
# configurations
_exclude:
- docs
- copier.yaml
- copier.yml
- ~*
- "*.py[co]"
- __pycache__
- .git
- .DS_Store
- .svn"
- data