pomodoro-svelte

Pomodoro Svelte

Pomodoro web application using Svelte

create-svelte

Everything you need to build a Svelte project, powered by create-svelte.

Creating a project

If you're seeing this, you've probably already done this step. Congrats!

# create a new project in the current directory
npm create svelte@latest

# create a new project in my-app
npm create svelte@latest my-app

Developing

Once you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:

npm run dev

# or start the server and open the app in a new browser tab
npm run dev -- --open

Building

To create a production version of your app:

npm run build

You can preview the production build with npm run preview.

To deploy your app, you may need to install an adapter for your target environment.

Emulate Azure Static Web Application locally

Copy the connection string from one of the supported database in Azure and set to the environment variable:

export DATABASE_CONNECTION_STRING='<YOUR_CONNECTION_STRING>'

To add the environment permanently, create a .env file with the following content:

DATABASE_CONNECTION_STRING='<YOUR_CONNECTION_STRING>'

Next, install the swa CLI tool for deployment:

npm install -g @azure/static-web-apps-cli

The build configuration needs to be updated in the svelte.config.js file. Most importantly, the fallback section has to set to the index.html value. Once you configured the SWA database connection by following the appropriate Tutorials under the Database connection section in the Azure Static Web Apps Documentation, start the static web app with it:

swa start ./build --data-api-location swa-db-connections

Go to the http://localhost:4280 URL that is under the host.cors.origins section in the swa-db-connections/staticwebapp.database.config.json configuration.

Note: As you can see, the ./build folder is selected to start the static web application.

To change other container in the NoSQL database, adapt the following files:

  • staticwebapp.database.config.json: Replace the database in the data-source.options.database and the entities section.
  • staticwebapp.database.schema.gql: Modify the database schema to match with the selected container.
  • +page.svelte: Adapt the CRUD operation according to the new database schema.

Top categories

Loading Svelte Themes