This repository was archived by the owner on Apr 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathreadme-vars.yml
More file actions
61 lines (53 loc) · 2.74 KB
/
readme-vars.yml
File metadata and controls
61 lines (53 loc) · 2.74 KB
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
---
# project information
project_name: ai-chat-app
project_url: "https://github.com/bitswired/fuseai"
project_logo: "https://raw.githubusercontent.com/bitswired/fuseai/main/public/logo.png"
project_blurb: "ai-chat-app - Open Source, Self-Hosted ChatGPT app"
project_github_repo_url: "https://github.com/imagegenius/docker-{{ project_name }}"
project_blurb_optional_extras_enabled: false
project_deprecation_status: true
project_deprecation_message: |
Upstream project is d-e-a-d.
# supported architectures
available_architectures:
- { arch: "{{ arch_x86_64 }}", tag: "amd64-latest" }
# container parameters
common_param_env_vars_enabled: true
param_container_name: "{{ project_name }}"
param_usage_include_net: false
param_usage_include_env: true
param_env_vars:
- { env_var: "NEXTAUTH_SECRET", env_value: "secret", desc: "Used to encrypt the NextAuth.js JWT and to hash email verification tokens, set to something long and random." }
- { env_var: "NEXTAUTH_URL", env_value: "http://192.168.1.2:3000", desc: "Set this to the IP:port used to access the container." }
- { env_var: "ADMIN_EMAIL", env_value: "example@me.com", desc: "Email used to access the WebUI." }
- { env_var: "ADMIN_PASSWORD", env_value: "password", desc: "Password used to access the WebUI." }
param_usage_include_vols: true
param_volumes:
- { vol_path: "/config", vol_host_path: "path_to_appdata", desc: "Contains the database" }
param_usage_include_ports: true
param_ports:
- { external_port: "3000", internal_port: "3000", port_desc: "WebUI Port" }
param_device_map: false
cap_add_param: false
# optional container parameters
opt_param_usage_include_env: false
opt_param_usage_include_vols: false
opt_param_usage_include_ports: false
opt_param_device_map: false
opt_cap_add_param: false
optional_block_1: false
# application setup block
app_setup_block_enabled: true
app_setup_block: |
**This container is just a dockerised version of [bitswired/fuseai](https://github.com/bitswired/fuseai), Please report any issues with this app [here](https://github.com/bitswired/fuseai/issues)!**
The WebUI can be accessed at `http://your-ip:3000`, you must specify an OpenAI API Key in settings before using, go to `http://your-ip:3000/settings`, enter the API key, and press save.
If you would like to setup multi-user support, use the `.env` template [here](https://github.com/bitswired/fuseai/blob/main/.env.multi-user.example), and copy the other variables.
# changelog
changelogs:
- { date: "26.04.24:", desc: "Deprecate" }
- { date: "01.06.23:", desc: "pin next and next-auth" }
- { date: "28.03.23:", desc: "Add variable checks" }
- { date: "21.03.23:", desc: "Add service checks" }
- { date: "19.03.23:", desc: "Add mutli-user variables." }
- { date: "05.03.23:", desc: "Initial Release." }