2025 FBLA Website Coding and Development submission https://fbla25.marinodev.com
Go to file
drake 1ba1c25c84
All checks were successful
ci / docker_image (push) Successful in 1m3s
ci / deploy (push) Successful in 16s
fix port 2
2024-12-17 19:58:18 -06:00
.gitea/workflows CI fixes 2024-12-17 19:32:38 -06:00
src app dev and CI 2024-12-17 19:26:53 -06:00
static app dev and CI 2024-12-17 19:26:53 -06:00
.gitignore app dev and CI 2024-12-17 19:26:53 -06:00
.npmrc init commit 2024-12-07 20:20:10 -06:00
.prettierignore init commit 2024-12-07 20:20:10 -06:00
.prettierrc init commit 2024-12-07 20:20:10 -06:00
docker-compose.yml CI fixes 2024-12-17 19:52:14 -06:00
Dockerfile fix port 2 2024-12-17 19:58:18 -06:00
eslint.config.js init commit 2024-12-07 20:20:10 -06:00
package-lock.json app dev and CI 2024-12-17 19:26:53 -06:00
package.json app dev and CI 2024-12-17 19:26:53 -06:00
postcss.config.js init commit 2024-12-07 20:20:10 -06:00
README.md init commit 2024-12-07 20:20:10 -06:00
svelte.config.js init commit 2024-12-07 20:20:10 -06:00
tailwind.config.ts init commit 2024-12-07 20:20:10 -06:00
tsconfig.json init commit 2024-12-07 20:20:10 -06:00
vite.config.ts init commit 2024-12-07 20:20:10 -06:00

sv

Everything you need to build a Svelte project, powered by sv.

Creating a project

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

# create a new project in the current directory
npx sv create

# create a new project in my-app
npx sv create 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.