Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gabrielrufino/fill
Fill databases with dummy data using yaml files
https://github.com/gabrielrufino/fill
Last synced: 7 days ago
JSON representation
Fill databases with dummy data using yaml files
- Host: GitHub
- URL: https://github.com/gabrielrufino/fill
- Owner: gabrielrufino
- License: unlicense
- Created: 2021-10-26T21:33:04.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-08-09T01:39:49.000Z (3 months ago)
- Last Synced: 2024-08-09T02:53:45.941Z (3 months ago)
- Language: JavaScript
- Homepage:
- Size: 1.57 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# fill
Fill databases with dummy data using yaml files
### Getting started
```bash
npm i -g @gabrielrufino/fill
fill config.yml
```### Config file
```yaml
version: 0config:
connection:
type: postgres
host: localhost
port: 5432
user: root
pass: root
database: testing
tables:
- name: users
quantity: 300
columns:
- name: name
generator: 'name.findName'
- name: company
value: Dell
```