https://github.com/antares-sql/test-databases
Collection of databases for testing purpose
https://github.com/antares-sql/test-databases
Last synced: 5 months ago
JSON representation
Collection of databases for testing purpose
- Host: GitHub
- URL: https://github.com/antares-sql/test-databases
- Owner: antares-sql
- Created: 2025-01-31T12:49:41.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-02-17T08:01:34.000Z (11 months ago)
- Last Synced: 2025-06-21T08:16:39.814Z (7 months ago)
- Language: PLpgSQL
- Size: 13.7 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Test Databases
## MySQL 8
Run `docker compose up` in `/docker/mysql` or `npm run docker:mysql` from project root.
### Direct Connection
#### Database
```yaml
host: localhost
port: 3306
user: root
password: password
```
### SSH Tunnel Connection
#### Database
```yaml
host: mysql-8-antares
port: 3306
user: root
password: password
```
#### SSH Tunnel
```yaml
host: localhost
port: 2222
user: tunnel
password: password
```
## PostgreSQL
Run `docker compose up` in `/docker/pg` or `npm run docker:pg` from project root.
### Direct Connection
#### Database
```yaml
host: localhost
port: 5432
user: postgres
password: password
```
### SSH Tunnel Connection
#### Database
```yaml
host: pg-antares
port: 5432
user: postgres
password: password
```
#### SSH Tunnel
```yaml
host: localhost
port: 2223
user: tunnel
password: password
```
## SQLite
In `sqlite` folder there are some databases available to connect to.
## Firebird SQL