├── README.md ├── _redirects └── index.html /README.md: -------------------------------------------------------------------------------- 1 | # Goodbye, world 2 | 3 | Snaplet the company has shut down, but our tools are now open source. 4 | 5 | ## Seed 6 | Automatically seed your database with production-like dummy data based on your schema for local development and testing. 7 | 8 | [Docs](https://docs.snaplet.dev/seed) | [GitHub](https://github.com/snaplet/seed) 9 | 10 | ## Snapshot 11 | 12 | Capture a snapshot (or subset) of your Postgres database whilst transforming the data. 13 | 14 | [Docs](https://docs.snaplet.dev/snapshot) | [GitHub](https://github.com/snaplet/snapshot) -------------------------------------------------------------------------------- /_redirects: -------------------------------------------------------------------------------- 1 | /seed/* https://snaplet-seed.netlify.app/seed/:splat 200 2 | /snapshot/* https://snaplet-snapshot.netlify.app/snapshot/:splat 200 3 | /* /index.html 200 4 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Snaplet Docs 7 | 8 | 9 | 10 |

Goodbye world

11 | Snaplet, the company, has shut down but our tools are now open source! 12 | 13 |

Seed

14 | Automatically seed your database with production-like dummy data based on your schema for local development and testing. 15 | 16 | Docs | GitHub 17 | 18 |

Snapshot

19 | 20 | Capture a snapshot (or subset) of your Postgres database whilst transforming the data. 21 | 22 | Docs | GitHub 23 | 24 | 25 | 26 | --------------------------------------------------------------------------------