Go to file
dependabot[bot] fa0152dd7b chore(deps): bump github.com/brianvoe/gofakeit/v6 from 6.23.2 to 6.24.0
Bumps [github.com/brianvoe/gofakeit/v6](https://github.com/brianvoe/gofakeit) from 6.23.2 to 6.24.0.
- [Release notes](https://github.com/brianvoe/gofakeit/releases)
- [Commits](https://github.com/brianvoe/gofakeit/compare/v6.23.2...v6.24.0)

---
updated-dependencies:
- dependency-name: github.com/brianvoe/gofakeit/v6
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-10-23 16:32:11 +07:00
.github chore(deps): bump goreleaser/goreleaser-action from 4 to 5 2023-09-12 16:02:44 +07:00
cmd/populatedb feat: simple populator 2022-11-06 17:56:31 +07:00
internal chore: fix lint 2022-12-05 15:44:16 +07:00
.gitignore feat: init new populator 2022-11-06 16:21:32 +07:00
.golangci.yml chore: sync golangci-lint 2023-07-06 10:09:50 +07:00
.goreleaser.yml chore: fix build github action 2022-11-06 18:13:55 +07:00
CHANGELOG.md chore(changelog): generate v0.0.6 2023-07-06 10:11:50 +07:00
LICENSE chore: bump year 2023-07-06 10:10:07 +07:00
Makefile chore: update make 2023-02-26 00:03:14 +07:00
README.md chore: add purpose in README 2022-11-07 00:17:25 +07:00
go.mod chore(deps): bump github.com/brianvoe/gofakeit/v6 from 6.23.2 to 6.24.0 2023-10-23 16:32:11 +07:00
go.sum chore(deps): bump github.com/brianvoe/gofakeit/v6 from 6.23.2 to 6.24.0 2023-10-23 16:32:11 +07:00

README.md

populatedb

Quickly populate database with fake data for testing only.

Currently support:

  • mysql:
    • varchar
    • bigint
    • int
    • timestamp
    • json

Install

go install github.com/haunt98/populatedb-go/cmd/populatedb@latest

Run

Example:

populatedb g --dialect "mysql" --url "root:@tcp(localhost:4000)/production" --table "production_2022" --number 10000000

Contribute

Feel free to ask or implement feature yourself :)

Roadmap

  • Support more database (postgres, sqlite, ...)
  • Support more database type

Thanks