32 lines
726 B
Markdown
32 lines
726 B
Markdown
# Travel App
|
|
|
|
## How to Start
|
|
|
|
First, you need to clone this repository by clicking the triple dots button → `Open with VS Code` or using the command below:
|
|
```
|
|
git clone http://git.prototyping.id/20210782/travel-app.git
|
|
```
|
|
|
|
Then, you need to download the project dependencies by typing this command:
|
|
```
|
|
npm install
|
|
```
|
|
## Developing
|
|
|
|
Once you've created a project and installed dependencies, start a development server:
|
|
|
|
```bash
|
|
npm run dev
|
|
```
|
|
|
|
## Building
|
|
|
|
To create a production version of your app:
|
|
|
|
```bash
|
|
npm run build
|
|
```
|
|
|
|
You can preview the production build with `npm run preview`.
|
|
|
|
> To deploy your app, you may need to install an [adapter](https://svelte.dev/docs/kit/adapters) for your target environment. |