Commit e18823d 1 parent dff7575 commit e18823d Copy full SHA for e18823d
File tree 3 files changed +8
-11
lines changed
3 files changed +8
-11
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ # required environment variables
1
2
PORT = [back의 port(e.g. 80)]
2
3
DB_PATH = [mongoDB path(e.g. mongodb://localhost:27017/local)]
4
+ AWS_ACCESS_KEY_ID = [AWS Access key ID]
5
+ AWS_SECRET_ACCESS_KEY = [AWS Secret access key]
6
+ AWS_S3_BUCKET_NAME = [AWS S3 Bucket name]
7
+ AWS_S3_URL = [AWS S3 url(e.g. https://<bucket-name>.s3.<region>.amazonaws.com)]
8
+
9
+ # optional environment variables
3
10
REDIS_PATH = [redis path(e.g. redis://127.0.0.1:6379)]
4
11
SESSION_KEY = [세션 관리에 사용되는 키(임의 값 아무거나 설정하면 된다)]
5
12
JWT_SECRET_KEY = [JWT 관리에 사용되는 키(임의 값 아무거나 설정하면 된다)]
6
13
SPARCSSSO_CLIENT_ID = [스팍스SSO ID]
7
14
SPARCSSSO_CLIENT_KEY = [스팍스SSO PW]
8
15
CORS_WHITELIST = [CORS 정책에서 허용하는 도메인의 목록(e.g. ["http://localhost:3000"])]
9
- AWS_ACCESS_KEY_ID=[AWS Access key ID]
10
- AWS_SECRET_ACCESS_KEY=[AWS Secret access key]
11
- AWS_S3_BUCKET_NAME=[AWS S3 Bucket name]
12
- AWS_S3_URL=[AWS S3 url(e.g. https://<bucket-name>.s3.<region>.amazonaws.com)]
13
16
GOOGLE_APPLICATION_CREDENTIALS = [GOOGLE_APPLICATION_CREDENTIALS JSON]
14
17
TEST_ACCOUNTS = [스팍스SSO로 로그인시 무조건 테스트로 로그인이 가능한 허용 아이디 목록]
15
18
SLACK_REPORT_WEBHOOK_URL = [Slack 웹훅 URL들이 담긴 JSON]
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ $ npm install --save
29
29
30
30
### Set Environment Configuration
31
31
See [ notion page] ( https://www.notion.so/sparcs/Environment-Variables-1b404bd385fa495bac6d5517b57d72bf ) .
32
- Refer to [ .env.easy. example] ( .env.easy.example ) or [ .env.hard.example ] ( .env.hard .example) and write your own ` .env ` .
32
+ Refer to [ .env.example] ( .env.example ) and write your own ` .env ` .
33
33
34
34
## Backend Route Information
35
35
See [ Backend Route Documentation] ( src/routes/docs/README.md )
You can’t perform that action at this time.
0 commit comments