This commit is contained in:
Junglei Kim
2025-05-19 20:47:53 +09:00
committed by Sebastian Jeltsch
parent 5a4a540d0b
commit 9b0cd117ea
3 changed files with 4 additions and 4 deletions
@@ -26,7 +26,7 @@ By simply starting TrailBase, the migrations in `traildepot/migrations` will be
applied, including `U1728810800__create_table_movies.sql`:
```sql
CREATE TABLE movies IF NOT EXISTS (
CREATE TABLE IF NOT EXISTS movies (
rank INTEGER PRIMARY KEY,
name TEXT NOT NULL,
year ANY NOT NULL,
+2 -2
View File
@@ -76,7 +76,7 @@ $ docker compose down
## Detailed Instructions
If you don't want to use the `docker compose` setup above, build from scratch, or
run the the Flutter app, only a few simple steps are needed.
run the Flutter app, only a few simple steps are needed.
If you have `cargo`, `pnpm`, and `flutter` installed, you can simply run:
```bash
@@ -109,7 +109,7 @@ $ make --always-make types
├── flutter #
│   ├── lib # Flutter app lives here
│   └── ... # Most other files a default cross-platform setup
├── Makefile # Builds JSON schemas and coge-generates type definitions
├── Makefile # Builds JSON schemas and code-generates type definitions
├── schema # Checked-in JSON schemas
├── traildepot # Where TrailBase keeps its runtime data
│   ├── backups # Periodic DB backups
+1 -1
View File
@@ -14,7 +14,7 @@ By simply starting TrailBase, the migrations in `traildepot/migrations` will be
applied, including `U1728810800__create_table_movies.sql`:
```sql
CREATE TABLE movies IF NOT EXISTS (
CREATE TABLE IF NOT EXISTS movies (
rank INTEGER PRIMARY KEY,
name TEXT NOT NULL,
year ANY NOT NULL,