Skip to content

Commit 7182bcd

Browse files
committed
Add .env to make local Foreman use more pleasant
1 parent 12dc981 commit 7182bcd

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.env

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Credentials for uploading packages to S3, these can be blank if you're not
2+
# publishing locally.
3+
S3_BUCKET=
4+
S3_ACCESS_KEY=
5+
S3_SECRET_KEY=
6+
# Not needed if the S3 bucket is in US standard
7+
S3_REGION=
8+
9+
# Credentials for talking to github, can be blank if you're not logging in.
10+
#
11+
# When registering a new application, be sure to set the callback url to the
12+
# address `http://localhost:4200/authorize/github`.
13+
GH_CLIENT_ID=
14+
GH_CLIENT_SECRET=
15+
16+
# Key to sign and encrypt cookies with
17+
SESSION_KEY=badkey
18+
19+
# Location of the *postgres* database
20+
# (eg. postgres://postgres:@localhost/cargo_registry)
21+
DATABASE_URL=postgres://postgres:@localhost/cargo_registry
22+
23+
# Remote and local locations of the registry index
24+
GIT_REPO_URL=file://./tmp/index-bare
25+
GIT_REPO_CHECKOUT=./tmp/index-co

0 commit comments

Comments
 (0)