├── 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 |