style(README): hot fix at line break

This commit is contained in:
YaoSiQian
2025-06-24 05:06:21 +08:00
committed by GitHub
parent b772c6f68e
commit 79ac2c2823

View File

@ -27,11 +27,13 @@ A free, open-source video editor for web, desktop, and mobile.
## Getting Started ## Getting Started
1. **Clone the repository:** 1. **Clone the repository:**
```bash ```bash
git clone <repo-url> git clone <repo-url>
cd OpenCut cd OpenCut
``` ```
2. **Install dependencies:** 2. **Install dependencies:**
```bash ```bash
cd apps/web cd apps/web
npm install npm install
@ -39,30 +41,37 @@ A free, open-source video editor for web, desktop, and mobile.
bun install bun install
``` ```
3. **Run the development server:** 3. **Run the development server:**
```bash ```bash
npm run dev npm run dev
# or, with Bun # or, with Bun
bun run dev bun run dev
``` ```
4. **Open in browser:** 4. **Open in browser:**
Visit [http://localhost:3000](http://localhost:3000) Visit [http://localhost:3000](http://localhost:3000)
## Run with Docker ## Run with Docker
1. **Prepare environment variables:** 1. **Prepare environment variables:**
Edit [docker-compose.yaml](https://github.com/OpenCut-app/OpenCut/blob/main/docker-compose.yaml#L57-L64) Edit [docker-compose.yaml](https://github.com/OpenCut-app/OpenCut/blob/main/docker-compose.yaml#L57-L64)
2. **Build and run:** 2. **Build and run:**
```bash ```bash
docker-compose up -d --build docker-compose up -d --build
``` ```
3. *(Optional)* **Migrate database:** 3. *(Optional)* **Migrate database:**
```bash ```bash
docker-compose exec web bun run db:migrate docker-compose exec web bun run db:migrate
``` ```
4. **Open in browser:** 4. **Open in browser:**
Visit [http://localhost:3000](http://localhost:3000) Visit [http://localhost:3000](http://localhost:3000)
## Contributing ## Contributing
Visit [CONTRIBUTING.md](.github/CONTRIBUTING.md)
## License ## License
MIT [Details](LICENSE) [MIT LICENSE](LICENSE)