Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/rust-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Start database
run: docker compose -f dev.docker-compose.yml up -d
- name: Migrate database
run: cd editor-server && cargo prisma migrate dev --skip-generate --name init
run: cd editor-server && cargo seaorm migrate
- name: Build and clippy check
run: cargo clippy --manifest-path ./editor-server/Cargo.toml
- name: fmt check
Expand All @@ -24,7 +24,7 @@ jobs:
run: cargo test --test '*' --manifest-path ./editor-server/Cargo.toml
file-server-test:
runs-on: ubuntu-latest
steps:
steps:
- uses: actions/checkout@v4
- name: build test and clippy check
run: cargo clippy --manifest-path ./file-server/Cargo.toml
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ migrate the database

```sh
# in Lightdance-Editor/editor-server
cargo prisma migrate dev --skip-generate --name init
cargo seaorm migrate
```

#### Install the dependencies
Expand Down Expand Up @@ -139,7 +139,7 @@ migrate the database

```sh
# in Lightdance-Editor/editor-server
cargo prisma migrate dev --skip-generate --name init
cargo seaorm migrate
```

Start all services
Expand Down
2 changes: 1 addition & 1 deletion editor-server/.cargo/config.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[alias]
prisma = "run -p prisma --"
seaorm = "run -p seaorm --"
Loading