-
Notifications
You must be signed in to change notification settings - Fork 224
Expand file tree
/
Copy path.env.sample
More file actions
25 lines (20 loc) · 968 Bytes
/
.env.sample
File metadata and controls
25 lines (20 loc) · 968 Bytes
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
# environment overrides for local development outside docker.
DOCSRS_PREFIX=ignored/cratesfyi-prefix
DOCSRS_DATABASE_URL=postgresql://cratesfyi:password@localhost:15432
# for local development with sqlx
DATABASE_URL=postgresql://cratesfyi:password@localhost:15432
DOCSRS_LOG=docs_rs=debug,rustwide=info
AWS_ACCESS_KEY_ID=cratesfyi
AWS_SECRET_ACCESS_KEY=secret_key
S3_ENDPOINT=http://localhost:9000
DOCSRS_S3_STATIC_ROOT_PATH=http://localhost:9000/rust-docs-rs
# build specific
DOCSRS_INCLUDE_DEFAULT_TARGETS=false
DOCSRS_DOCKER_IMAGE=ghcr.io/rust-lang/crates-build-env/linux-micro
SENTRY_ENVIRONMENT=dev
# To build with a PR that hasn't landed in a rust dist toolchain yet,
# you can set this to the git sha of a try build:
# https://forge.rust-lang.org/infra/docs/rustc-ci.html#try-builds
DOCSRS_TOOLCHAIN=nightly
# NOTE: when running services in docker-compose, you can override the settings in
# `.docker.env`, you'll fine an example in `.docker.env.sample`.