Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(bridge-ui-v2): update README.md in bridge-ui-v2 #14280

Merged
merged 1 commit into from
Jul 28, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 11 additions & 13 deletions packages/bridge-ui-v2/README.md
Original file line number Diff line number Diff line change
@@ -1,28 +1,26 @@
# create-svelte
# Bridge UI v2

Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte).
## Developing

## Creating a project
Installed dependencies with `pnpm install`

If you're seeing this, you've probably already done this step. Congrats!
Set up environment variables

```bash
# create a new project in the current directory
npm create svelte@latest
cp .env.example .env

# create a new project in my-app
npm create svelte@latest my-app
```
# update environment variables in .env

## Developing
source .env
```

Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
start a development server:

```bash
npm run dev
pnpm run dev

# or start the server and open the app in a new browser tab
npm run dev -- --open
pnpm run dev -- --open
```

## Building
Expand Down