File tree 1 file changed +25
-0
lines changed
1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments