barretthousen/src/web-client
Adam Veldhousen eb4fe808d7
fails because browser cannot find /api/v1
2023-06-02 18:30:15 -05:00
..
src Squashed commit of the following: 2023-05-30 23:04:04 -05:00
static Web client (#5) 2023-05-20 06:45:31 +00:00
tests fails because browser cannot find /api/v1 2023-06-02 18:30:15 -05:00
.dockerignore Squashed commit of the following: 2023-05-30 23:04:04 -05:00
.eslintignore Web client (#5) 2023-05-20 06:45:31 +00:00
.eslintrc.cjs Web client (#5) 2023-05-20 06:45:31 +00:00
.gitignore Web client (#5) 2023-05-20 06:45:31 +00:00
.prettierignore Web client (#5) 2023-05-20 06:45:31 +00:00
.prettierrc Web client (#5) 2023-05-20 06:45:31 +00:00
Dockerfile.dev-frontend Squashed commit of the following: 2023-05-30 23:04:04 -05:00
Dockerfile.frontend Squashed commit of the following: 2023-05-30 23:04:04 -05:00
README.md Web client (#5) 2023-05-20 06:45:31 +00:00
package-lock.json Web client (#5) 2023-05-20 06:45:31 +00:00
package.json Squashed commit of the following: 2023-05-30 23:04:04 -05:00
playwright.config.ts Web client (#5) 2023-05-20 06:45:31 +00:00
postcss.config.js Web client (#5) 2023-05-20 06:45:31 +00:00
svelte.config.js uses k8s to run frontend, has ingress 2023-05-24 01:44:04 -05:00
tailwind.config.js Web client (#5) 2023-05-20 06:45:31 +00:00
tsconfig.json Web client (#5) 2023-05-20 06:45:31 +00:00
vite.config.ts Web client (#5) 2023-05-20 06:45:31 +00:00

README.md

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.