Skip to content
Open
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
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ pnpm run deploy

This will spin up Wrangler in `production` mode, run any created migrations, build the app and then deploy the bundle up to Cloudflare.

If you move these steps into your CI pipeline, make sure the deploy step activates the new Worker version. For an immediate production release, use `pnpm run deploy` or `npx wrangler deploy`. Do not use `npx wrangler versions upload` by itself for production deploys: that command only uploads an inactive Worker version, so live traffic will keep serving the previous homepage until the uploaded version is deployed with `wrangler versions deploy` or through the Cloudflare dashboard.

That's it! You can if you wish move these steps into your CI pipeline as well.

## Enabling logs
Expand Down Expand Up @@ -117,3 +119,5 @@ This also applies to your own code, in the case of importing a lot of libraries
## Questions

If you have any issues or questions, reach out to us on [Discord](https://discord.com/invite/payload) or start a [GitHub discussion](https://github.com/payloadcms/payload/discussions).

by Konstantin
12 changes: 0 additions & 12 deletions src/app/(frontend)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,6 @@ const featuredArticles = [
'Best family-friendly cafés with ocean views',
]

const events = [
{ date: 'May 30', title: 'Old Town Night Market', location: 'Phuket Town' },
{ date: 'Jun 2', title: 'Sunset Beach Yoga', location: 'Kata Beach' },
{ date: 'Jun 5', title: 'Andaman Seafood Festival', location: 'Rawai Pier' },
]

const featuredArticles = [
'7 hidden beaches locals still love in low season',
'How to island-hop from Phuket in one weekend',
'Best family-friendly cafés with ocean views',
]

export default function HomePage() {
return (
<div className="todophuket-page">
Expand Down