aiken/examples/gift_card
rvcas 7c1cd81554 feat: start switching to blaze and svelte 2024-11-25 16:19:06 -05:00
..
src feat: start switching to blaze and svelte 2024-11-25 16:19:06 -05:00
static feat: start switching to blaze and svelte 2024-11-25 16:19:06 -05:00
validators Start working on using a decision tree for when expr. Also fmt fix. Other Stuff 2024-11-01 19:34:45 -04:00
.gitignore feat: start switching to blaze and svelte 2024-11-25 16:19:06 -05:00
.npmrc feat: start switching to blaze and svelte 2024-11-25 16:19:06 -05:00
.prettierignore feat: start switching to blaze and svelte 2024-11-25 16:19:06 -05:00
.prettierrc feat: start switching to blaze and svelte 2024-11-25 16:19:06 -05:00
README.md feat: start switching to blaze and svelte 2024-11-25 16:19:06 -05:00
aiken.lock Refresh gift_card and hello_world examples. 2024-09-01 18:22:43 +02:00
aiken.toml Fix remaining acceptance tests to be V3-compatible 2024-08-27 19:19:25 +02:00
blueprint.ts chore: rename example parents folder to gift card 2023-03-14 19:13:21 -04:00
eslint.config.js feat: start switching to blaze and svelte 2024-11-25 16:19:06 -05:00
package-lock.json feat: start switching to blaze and svelte 2024-11-25 16:19:06 -05:00
package.json feat: start switching to blaze and svelte 2024-11-25 16:19:06 -05:00
plutus.json feat: start switching to blaze and svelte 2024-11-25 16:19:06 -05:00
postcss.config.js feat: start switching to blaze and svelte 2024-11-25 16:19:06 -05:00
svelte.config.js feat: start switching to blaze and svelte 2024-11-25 16:19:06 -05:00
tailwind.config.ts feat: start switching to blaze and svelte 2024-11-25 16:19:06 -05:00
tsconfig.json feat: start switching to blaze and svelte 2024-11-25 16:19:06 -05:00
vite.config.ts feat: start switching to blaze and svelte 2024-11-25 16:19:06 -05:00

README.md

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.