Skip to content
Merged
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
3 changes: 2 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,8 @@ jobs:
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
COOKIE_SECRET: ${{ secrets.COOKIE_SECRET }}
run: echo "$COOKIE_SECRET" | bunx wrangler secret put COOKIE_SECRET
run: |
echo "$COOKIE_SECRET" | bunx wrangler secret put COOKIE_SECRET --env production

- name: ☁️ Deploy to Cloudflare Workers
if: github.ref == 'refs/heads/main'
Expand Down
3 changes: 2 additions & 1 deletion docs/agents/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ Quick notes for getting a local epicflare environment running.

## Local development

- Copy `.env.example` to `.env` before starting any work, then update secrets as needed.
- Copy `.env.example` to `.env` before starting any work, then update secrets as
needed.
- `bun run dev`
- If you only need the client bundle or worker, use:
- `bun run dev:client`
Expand Down
Loading