A failed attempt at creating a new website for our students' association
This repository has been archived on 2024-08-05. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
  • TypeScript 61%
  • Svelte 27.7%
  • HTML 8.4%
  • JavaScript 2.9%
Find a file
2024-06-18 22:39:36 +02:00
src Add preliminary markdown redaction function 2024-06-18 22:39:36 +02:00
static Initial commit 2023-12-29 23:45:38 +01:00
.eslintignore Initial commit 2023-12-29 23:45:38 +01:00
.eslintrc.cjs Initial commit 2023-12-29 23:45:38 +01:00
.gitignore Implement basic markdown rendering 2024-01-02 02:47:20 +01:00
.npmrc Initial commit 2023-12-29 23:45:38 +01:00
.prettierignore Initial commit 2023-12-29 23:45:38 +01:00
.prettierrc Initial commit 2023-12-29 23:45:38 +01:00
package-lock.json Implement frontmatter handling 2024-03-30 01:51:09 +01:00
package.json Implement frontmatter handling 2024-03-30 01:51:09 +01:00
README.md Initial commit 2023-12-29 23:45:38 +01:00
svelte.config.js Implement basic markdown rendering 2024-01-02 02:47:20 +01:00
tsconfig.json Initial commit 2023-12-29 23:45:38 +01:00
vite.config.ts Run prettier 2024-02-28 00:30:09 +01: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.