Skip to content
Cloudflare Docs

Dashboard

Follow this guide to create a Workers application using the Cloudflare dashboard.

Prerequisites

Create a Cloudflare account, if you have not already.

Setup

To get started with a new Workers application:

  1. Log in to the Cloudflare dashboard and select your account.
  2. Go to the Workers & Pages section of the dashboard.
  3. Select Create. From here, you can:
    • You can select from the gallery of production-ready templates
    • Import an existing Git repository on your own account
    • Let Cloudflare clone and bootstrap a public repository containing a Workers application.
  4. Once you've connected to your chosen Git provider, configure your project and click Deploy.
  5. Cloudflare will kick off a new build and deployment. Once deployed, preview your Worker at its provided workers.dev subdomain.

Continue development

Applications started in the dashboard are set up with Git to help kickstart your development workflow. To continue developing on your repository, you can run:

Terminal window
# clone you repository locally
git clone <git repo URL>
# be sure you are in the root directory
cd <directory>

Now, you can preview and test your changes by running Wrangler in your local development environment. Once you are ready to deploy you can run:

Terminal window
# adds the files to git tracking
git add .
# commits the changes
git commit -m "your message"
# push the changes to your Git provider
git push origin main

To do more: