Source code for my personal website https://bgenc.net
Find a file
Kaan Barmore-Genç 2d85ca331c
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Add the most recent post to the home page
2024-05-27 14:54:29 +00:00
.devcontainer Add the most recent post to the home page 2024-05-27 14:54:29 +00:00
.vscode Add the most recent post to the home page 2024-05-27 14:54:29 +00:00
scripts Add blog post about extensions and shadow dom 2024-05-18 23:51:44 -05:00
src Add the most recent post to the home page 2024-05-27 14:54:29 +00:00
static New post on adding single-click dev environment links to your project 2024-05-27 05:54:44 +00:00
.eslintignore start 2023-11-18 11:09:07 -06:00
.eslintrc.cjs start 2023-11-18 11:09:07 -06:00
.gitattributes Not sure what I did 2023-11-24 17:46:48 -06:00
.gitignore start 2023-11-18 11:09:07 -06:00
.npmrc start 2023-11-18 11:09:07 -06:00
.nvmrc Prep for deploy 2024-05-09 22:44:02 -05:00
.prettierignore start 2023-11-18 11:09:07 -06:00
.prettierrc Implement pagination, update the logo again 2024-05-05 23:53:42 -05:00
.woodpecker.yml Add missing manual event 2024-05-09 22:58:42 -05:00
bgenc.net.code-workspace Add the most recent post to the home page 2024-05-27 14:54:29 +00:00
package-lock.json Implement pagefind 2024-05-09 22:33:58 -05:00
package.json New post on adding single-click dev environment links to your project 2024-05-27 05:54:44 +00:00
README.md start 2023-11-18 11:09:07 -06:00
svelte.config.js Ugh 2023-12-23 13:13:16 -06:00
tsconfig.json start 2023-11-18 11:09:07 -06:00
vite.config.ts images and stuff 2023-11-18 12:19:29 -06: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.