Misty Mountains Therapy Website
Go to file
Elizabeth Hunt 61b2e20dfb
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone Build is failing
add new images
2024-07-20 14:15:52 -07:00
src add new images 2024-07-20 14:15:52 -07:00
static Let there be light 2022-04-12 18:39:51 -06:00
.dockerignore fix dockerignore 2024-05-01 00:53:01 -07:00
.drone.yml ci/cd 2024-05-01 00:46:57 -07:00
.eslintrc.cjs Let there be light 2022-04-12 18:39:51 -06:00
.gitignore Let there be light 2022-04-12 18:39:51 -06:00
.npmrc Let there be light 2022-04-12 18:39:51 -06:00
.prettierrc Let there be light 2022-04-12 18:39:51 -06:00
deploy.sh ci/cd 2024-05-01 00:46:57 -07:00
Dockerfile fix docker 2024-05-01 01:03:23 -07:00
package-lock.json initial update with nodemailer 2024-01-07 01:21:06 -07:00
package.json initial update with nodemailer 2024-01-07 01:21:06 -07:00
README.md Let there be light 2022-04-12 18:39:51 -06:00
svelte.config.js Add contact page 2022-05-03 15:57:42 -06:00
tsconfig.json Let there be light 2022-04-12 18:39:51 -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 init svelte@next

# create a new project in my-app
npm init svelte@next my-app

Note: the @next is temporary

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.