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
10 changes: 8 additions & 2 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This application uses Cloudflare Developer Platform, including Workers and Durab

- TypeScript strict mode
- Single quotes, trailing comma
- Use prettier for formatting after each prompt
- Run `npm run format` to format the code after each prompt

## Script rules

Expand All @@ -22,4 +22,10 @@ This application uses Cloudflare Developer Platform, including Workers and Durab

## Worker implementation

- Internal worker routes all start with ${usersPath}, make sure to always prefix them
- Internal worker routes all start with `${usersPath}`, make sure to always prefix them
- Never override `.env` and `.dev.vars` files

## API

- All non-admin API paths start with `/${usersPath}/api/`
- All admin API paths start with `/${usersPath}/admin/api/`
Loading