Go to file
2024-09-07 02:49:23 +09:00
articles@3744bd7899 fix: always updated all articles 2024-09-07 02:48:22 +09:00
docker chore: Update Dockerfile to clone blog articles repository 2024-09-03 06:52:49 +09:00
src fix: always updated all articles 2024-09-07 02:48:22 +09:00
static feat: add logo.png 2024-08-17 21:11:40 +09:00
tests Create project 2024-08-13 20:31:33 +09:00
.gitignore chore: Add key files to .gitignore 2024-09-03 06:52:35 +09:00
.gitmodules chore: Remove articles subproject 2024-09-03 18:24:54 +09:00
.npmrc Create project 2024-08-13 20:31:33 +09:00
.prettierignore Create project 2024-08-13 20:31:33 +09:00
.prettierrc Create project 2024-08-13 20:31:33 +09:00
docker-compose.yml chore: Move and update the Dockerfile for the database configuration 2024-08-20 23:10:46 +09:00
eslint.config.js Create project 2024-08-13 20:31:33 +09:00
package-lock.json chore: npm i shiki 2024-09-07 02:19:29 +09:00
package.json chore: npm i shiki 2024-09-07 02:19:29 +09:00
playwright.config.ts Create project 2024-08-13 20:31:33 +09:00
README.md Create project 2024-08-13 20:31:33 +09:00
svelte.config.js feat: setup database 2024-08-17 16:10:26 +09:00
tsconfig.json Create project 2024-08-13 20:31:33 +09:00
vite.config.ts Create project 2024-08-13 20:31:33 +09:00

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.