Skip to content

hms-dbmi/PIC-SURE-Frontend

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ada1c65 · Feb 28, 2024

History

23 Commits
Feb 8, 2024
Feb 28, 2024
Dec 18, 2023
Feb 28, 2024
Dec 18, 2023
Dec 18, 2023
Feb 8, 2024
Feb 27, 2024
Dec 18, 2023
Feb 8, 2024
Dec 18, 2023
Feb 8, 2024
Feb 13, 2024
Feb 13, 2024
Feb 8, 2024
Feb 27, 2024
Feb 28, 2024
Feb 13, 2024
Feb 13, 2024
Feb 8, 2024
Feb 13, 2024
Feb 8, 2024
Feb 13, 2024
Feb 8, 2024
Feb 8, 2024

Repository files navigation

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.

Testing

If this is the first time testing is run, download new browsers:

npx playwright install

Run unit-tests:

npm run test

Linting

Test if there are linting errors that need to be fixed:

npm run lint

Format code using Prettier:

npm run format