-
Notifications
You must be signed in to change notification settings - Fork 4
/
sample.env
45 lines (39 loc) · 1.5 KB
/
sample.env
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
# The Prisma database URL to the Postgres database.
# The default is fine if you're using the default docker-compose setup.
DATABASE_URL="postgresql://repco:repco@localhost:5432/repco"
# URL of this repco instance
# This is used in several ways:
# * by the the repco CLI to reach the repco server
# * by the frontend to reach the instance's graphql endpoint
# * by the activitypub server for federation with oder instances
#
# For public deployments this has to be set to the public https URL of this instance
# REPCO_URL=https://your-repco-instance.org
#
# For dev deployments that use peertube running in a docker container this should
# be set to the `http://host.docker.internal:8765` URL to be reachable from the
# peertube container
# (see docs/Development/activitypub.md for details)
# REPCO_URL=http://host.docker.internal:8765
# By default for simple local dev environments, set to the localhost URL of the instance
REPCO_URL=http://localhost:8765
# Auth token for API access
# must be a 16+ character long random string
# create eg with `openssl rand -base64 20`
REPCO_ADMIN_TOKEN=
# API key for the CBA datasource
# CBA_API_KEY=
# Enable debug logging
# LOG_LEVEL=debug
# GitHub Client ID and Secret
# GITHUB_CLIENT_ID=
# GITHUB_CLIENT_SECRET=
# Configuration values for elastic search & pgsync
# Password for the 'elastic' user (at least 6 characters)
ELASTIC_PASSWORD=repco
ELASTIC_VERSION=8.10.4
ELASTIC_LICENSE=basic
ELASTIC_PORT=9201
ELASTIC_MEM_LIMIT=1073741824
ELASTIC_CLUSTER_NAME=repco-es
REDIS_PASSWORD=repco