Skip to content

Commit cfd6091

Browse files
authored
Merge pull request #420 from rjgoldsborough/remove-quotes-from-env
removing quotes from env sample file
2 parents 621d1ea + 14de2bb commit cfd6091

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

.env.sample

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,37 @@
11
# Location of the *postgres* database. For example, if you have created a
22
# blank database locally named `cargo_registry`, this would be
33
# `postgres://postgres@localhost/cargo_registry`.
4-
export DATABASE_URL=""
4+
export DATABASE_URL=
55

66
# If you are running a mirror of crates.io, uncomment this line.
77
# export MIRROR=1
88

99
# Key to sign and encrypt cookies with. Change this to a long, random string
1010
# for production.
11-
export SESSION_KEY="badkey"
11+
export SESSION_KEY=badkey
1212

1313
# If you will be running the tests, set this to another database that you
1414
# have created. Otherwise, leave this blank.
15-
export TEST_DATABASE_URL=""
15+
export TEST_DATABASE_URL=
1616

1717
# Credentials for uploading packages to S3. You can leave these blank if
1818
# you're not publishing to s3 from your crates.io instance.
1919
# When running `cargo test`, set S3_BUCKET to `alexcrichton-test`.
20-
export S3_BUCKET=""
21-
export S3_ACCESS_KEY=""
22-
export S3_SECRET_KEY=""
23-
export S3_REGION="" # not needed if the S3 bucket is in US standard
20+
export S3_BUCKET=
21+
export S3_ACCESS_KEY=
22+
export S3_SECRET_KEY=
23+
export S3_REGION= # not needed if the S3 bucket is in US standard
2424

2525
# Remote and local locations of the registry index. You can leave these to
2626
# use a `tmp` subdirectory of the working directory, which is what the
2727
# script in `./script/init-local-index.sh` will set up for you.
28-
export GIT_REPO_URL="file://./tmp/index-bare"
29-
export GIT_REPO_CHECKOUT="./tmp/index-co"
28+
export GIT_REPO_URL=file://./tmp/index-bare
29+
export GIT_REPO_CHECKOUT=./tmp/index-co
3030

3131
# Credentials for talking to github. You can leave these blank if you're
3232
# not logging into your crates.io instance.
3333
# When registering a new application on github for use with your local
3434
# crates.io instance, be sure to set the callback url for that application
3535
# to the address `http://localhost:4200/authorize/github`.
36-
export GH_CLIENT_ID=""
37-
export GH_CLIENT_SECRET=""
36+
export GH_CLIENT_ID=
37+
export GH_CLIENT_SECRET=

0 commit comments

Comments
 (0)