Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit 9195e59

Browse files
committed
all: Add initial working prototype for "live" databases
These are initially intended for use via the DBHub.io API, though if they prove useful will be hooked up to the other DB4S and DBHub.io pieces (webui, dio, etc).
1 parent 5ddc986 commit 9195e59

27 files changed

+2542
-301
lines changed

.github/workflows/cypress.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
uses: cypress-io/github-action@v5
2323
with:
2424
wait-on: 'https://localhost:9443'
25-
wait-on-timeout: 120
25+
wait-on-timeout: 180
2626
build: sh ./build_dbhub_docker_and_local.sh
2727
start: yarn docker:startlocal
2828
command: yarn cypress:test

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -56,3 +56,7 @@ webui/js/markdown-editor.js
5656

5757
# Local secrets
5858
.env
59+
60+
# Other files
61+
headers.out
62+
curl_commands.txt

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ or run it locally for your own users.
2121
* [Minio](https://minio.io) - release 2016-11-26T02:23:47Z and later are known to work.
2222
* [NodeJS](https://nodejs.org) - version 18.x is known to work, others are untested.
2323
* [PostgreSQL](https://www.postgresql.org) - version 13 and above are known to work.
24+
* [RabbitMQ](https://www.rabbitmq.com) - version 3.10.x is known to work, others are untested.
2425
* [Yarn](https://classic.yarnpkg.com) - version 1.22.x. Not Yarn 2.x or greater.
2526

2627
### Subdirectories
@@ -31,6 +32,7 @@ or run it locally for your own users.
3132
* [default_licences](default_licences/) - Useful Open Source licences suitable for databases.
3233
* [db4s](db4s/) - REST server which [DB Browser for SQLite](http://sqlitebrowser.org)
3334
and [Dio](https://github.com/sqlitebrowser/dio) use for communicating with DBHub.io.
35+
* [live](live/) - Internal daemon which manages live SQLite databases.
3436
* [webui](webui/) - The main public facing webUI.
3537

3638
### Libraries for accessing DBHub.io via API

0 commit comments

Comments
 (0)