Skip to content

Commit 8757704

Browse files
authored
Merge pull request #3328 from AtCoder-NoviSteps/feature/atcoder-account-model
Feature/atcoder account model
2 parents a5ca66c + 960fdb1 commit 8757704

11 files changed

Lines changed: 1603 additions & 32 deletions

File tree

.env.example

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# AtCoder affiliation confirmation API endpoint
2+
# Set this to the actual endpoint URL in your .env file (do not commit real URLs here)
3+
CONFIRM_API_URL=https://your-confirm-api-endpoint.example.com/confirm

compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ services:
1212
- NODE_ENV=development
1313
- DATABASE_URL=postgresql://db_user:db_password@db:5432/test_db?pgbouncer=true&connection_limit=10&connect_timeout=60&statement_timeout=60000 # Note: Local server cannot start if port is set to db:6543.
1414
- DIRECT_URL=postgresql://db_user:db_password@db:5432/test_db
15-
- CONFIRM_API_URL=https://prettyhappy.sakura.ne.jp/php_curl/index.php
15+
- CONFIRM_API_URL=${CONFIRM_API_URL:?CONFIRM_API_URL environment variable is required} # AtCoder affiliation confirmation API endpoint
1616
command: sleep infinity
1717
depends_on:
1818
- db

0 commit comments

Comments
 (0)