You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
691 B
Markdown
38 lines
691 B
Markdown
# SoraWebui
|
|
|
|
## Quick Started
|
|
|
|
1. Clone project
|
|
|
|
```bash
|
|
git clone git@github.com:SoraWebui/SoraWebui.git
|
|
```
|
|
|
|
2. Install dependencies
|
|
|
|
```bash
|
|
cd SoraWebui && yarn
|
|
#or
|
|
cd SoraWebui && npm install
|
|
#or
|
|
cd SoraWebui && pnpm install
|
|
```
|
|
|
|
3. Run it
|
|
|
|
```bash
|
|
yarn dev
|
|
#or
|
|
npm run dev
|
|
#or
|
|
pnpm dev
|
|
```
|
|
|
|
4. Open [http://localhost](http://localhost) with your browser to see it.
|
|
|
|
## Deploy on Vercel
|
|
|
|
The easiest way to deploy this app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme).
|
|
|
|
Check out [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
|