Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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: 0

config:
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
```