-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
42 lines (34 loc) · 1.96 KB
/
Copy path.env.example
File metadata and controls
42 lines (34 loc) · 1.96 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
# Public (client-visible) configuration for the static SPA. None of these are
# secret — the OAuth credentials and the user's token live only in the session
# broker (see broker/). All are read at build time via $env/dynamic/public.
#
# Copy this file to .env for the values shared by all build modes. Vite loads
# .env in every mode and overlays .env.<mode> (development, production,
# staging, testing) on top, so a mode file should hold only the variables
# whose values differ for that deployment.
# Path the OAuth session broker is mounted at on the SPA's own origin (it must
# be same-origin — see broker/README.md). Default: /auth
#PUBLIC_BROKER_URL=/auth
# Path the slug registry is mounted at on the SPA's own origin (a broker
# blueprint — same-origin so its calls need no CORS; see broker/registry.py and
# deploy/apache.conf). The app resolves a campaign name to its repo id here and
# registers new names after creating the repo. Default: /registry
#PUBLIC_REGISTRY_URL=/registry
# The template repo new campaigns are stamped from.
PUBLIC_TEMPLATE_OWNER=
PUBLIC_TEMPLATE_REPO=
# Topic stamped on every repo created here, used to build the listing.
PUBLIC_REPO_TOPIC=created-with-lets-encode-instigation-platform
# Which forge implementation to use (only 'github' is implemented today).
PUBLIC_FORGE=github
# mei-friend instance volunteers are handed off to for editing.
PUBLIC_MEI_FRIEND_URL=https://mei-friend.mdw.ac.at
# Measure detector used to scaffold a score from uploaded page images / PDFs.
PUBLIC_MEASURE_DETECTOR_URL=https://measure-detector.edirom.de
# Central automation pointer written into each new campaign's config.yaml: the
# repo the campaign caller checks out, the ref to pin, and the entry point.
# Defaults to lets-encode/instigation @ main during development. Pin the ref to
# a full commit SHA as a production-release hardening step.
#PUBLIC_AUTOMATION_REPO=lets-encode/instigation
#PUBLIC_AUTOMATION_REF=main
#PUBLIC_AUTOMATION_PATH=scripts/coordinator.ts