-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
22 lines (18 loc) · 890 Bytes
/
.env.example
File metadata and controls
22 lines (18 loc) · 890 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# ShipBob OAuth2 Credentials
# Get these from ShipBob Developer Portal: https://developer.shipbob.com
SHIPBOB_CLIENT_ID=your_client_id_here
SHIPBOB_CLIENT_SECRET=your_client_secret_here
SHIPBOB_REDIRECT_URI=http://localhost:8080/auth/shipbob/callback
# ShipBob API URLs (Production - default)
SHIPBOB_AUTH_URL=https://auth.shipbob.com/connect/authorize
SHIPBOB_TOKEN_URL=https://auth.shipbob.com/connect/token
SHIPBOB_API_URL=https://api.shipbob.com
# Uncomment below for Sandbox/Testing:
# SHIPBOB_AUTH_URL=https://authstage.shipbob.com/connect/authorize
# SHIPBOB_TOKEN_URL=https://authstage.shipbob.com/connect/token
# SHIPBOB_API_URL=https://sandbox-api.shipbob.com
# Redis URL (required for production, optional for local dev)
# Railway will auto-populate this when you add a Redis service
REDIS_URL=redis://localhost:6379
# Server Port (Railway sets this automatically)
PORT=8080