Skip to content

Commit

Permalink
Merge pull request #2188 from undb-io/release/v1.0.0-135
Browse files Browse the repository at this point in the history
Release version v1.0.0-135
  • Loading branch information
nichenqin authored Dec 23, 2024
2 parents 9395354 + 71c6124 commit a05f77d
Show file tree
Hide file tree
Showing 57 changed files with 3,036 additions and 201 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## v1.0.0-135


### 🏡 Chore

- Add readme about docker volume ([e32d902](https://github.com/undb-io/undb/commit/e32d902))

### ❤️ Contributors

- Nichenqin ([@nichenqin](http://github.com/nichenqin))

## v1.0.0-134

## v1.0.0-133
Expand Down
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ UNDB is a no-code platform that can also serve as a Backend as a Service (BaaS).

- ⚡ No-code platform, easy to use
- 🗄️ Based on SQLite, a lightweight database
- 🥁 Built-in playground mode, try it out without any setup
- 🔐 Private and local first
- 📦 Can be packaged into a binary file using Bun
- 📊 Support formula field like Excel/Airtable
Expand Down Expand Up @@ -65,6 +66,17 @@ UNDB is a no-code platform that can also serve as a Backend as a Service (BaaS).
docker run -p 3721:3721 ghcr.io/undb-io/undb:latest
```

- Run with docker with volume

```bash
docker run -d \
-p 3721:3721 \
-v $(pwd)/undb.sqlite:/usr/src/app/undb.sqlite \
-v $(pwd)/undb:/usr/src/app/undb \
--name undb \
ghcr.io/undb-io/undb:latest
```

## Development

### Local Development (Recommended)
Expand Down
1 change: 1 addition & 0 deletions apps/backend/drizzle/0014_messy_sasquatch.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE `undb_user` ADD `otp_secret` text;
Loading

0 comments on commit a05f77d

Please sign in to comment.