Dependencies, README, svelte setup w/ vite, prettier & eslint configs

This commit is contained in:
2022-11-28 20:01:10 +01:00
commit c013c839bb
10 changed files with 191 additions and 0 deletions

44
README.md Normal file
View File

@@ -0,0 +1,44 @@
# planetposen frontend
Frontend of planetposen webshop. View backend at: [kevinmidboe/planetposen-backend](https://github.com/kevinmidboe/planetposen-backend)
## Install
Download project:
```bash
git clone https://github.com/kevinmidboe/planetposen-frontend
cd planetposen-frontend
```
Install dependencies:
```bash
yarn
```
or
```bash
npm install
```
## Developing
To view project locally and see changes with hot module reloading run:
```bash
yarn dev
```
Visit at: http://localhost:5173
## Build
To create a production build of planetposen run:
```bash
yarn build
```
You can preview the production build with `yarn preview`.
> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.