Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
target
dist
.git
.tools
.coatcheck
node_modules
playwright-report
test-results
.env
.env.*
!.env.example
20 changes: 18 additions & 2 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,7 +1,23 @@
APP_ENV=local
HOST=127.0.0.1
PORT=3100
DATABASE_URL=
COOKIE_KEY=replace-with-at-least-32-random-characters

CLERK_PUBLISHABLE_KEY=pk_test_replace_me
CLERK_SECRET_KEY=sk_test_replace_me
CLERK_ISSUER=https://replace-me.clerk.accounts.dev
CLERK_AUTHORIZED_PARTIES=http://127.0.0.1:3000
CLERK_AUTHORIZED_PARTIES=http://127.0.0.1:3100
CLERK_AUDIENCE=
CLERK_JWKS_URL=
APP_ENV=development

REOWN_PROJECT_ID=

# The first commerce release is test-only. Production mainnet, real postage,
# and provider-backed tax stay disabled until their acceptance gates pass.
COMMERCE_MAINNET_ENABLED=false
USPS_CLIENT_ID=
USPS_CLIENT_SECRET=
UPS_CLIENT_ID=
UPS_CLIENT_SECRET=
TAX_PROVIDER=
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
- run: cargo clippy --workspace --all-targets --all-features -- -D warnings
- run: cargo test --workspace --all-features
- run: node --check crates/coldfront-ui/src/auth.js
- run: node --check crates/coldfront-ui/src/wallet.js

coatcheck:
runs-on: ubuntu-latest
Expand Down
Loading
Loading