aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--README.md25
1 files changed, 18 insertions, 7 deletions
diff --git a/README.md b/README.md
index 024395b..e41f406 100644
--- a/README.md
+++ b/README.md
@@ -1,24 +1,35 @@
# (WIP) Fixgen - Language agnostic fixture generator
+Usually wiring up fake test data is a bunch of work, especially when that data is relational. Fixgen helps to alleviate some of that pain by allowing you to very easily generate fixtures that can also reference other fixtures. It also has some nice characteristics:
+
- Zero dependencies
- Language agnostic
+- Dead simple and fast grammar to generate fixtures in minutes
+- Supports relations
+- Writing in OCaml
-This tool allows you to very easily generate fixtures.
+## Usage
-You simply define a fixgen file, for example sample.fixgen
+Simply define a fixgen file, for example sample.fixgen
```
-user (2): id uuidv4, name name
-purchase (10): id uuidv4, buyer user.id, amount int<1,40>
+user (2): id uuidv4, name name, email email
+purchase (10): id uuidv4, buyer user.id, amount int(1,40)
```
And then run it
-```
+```sh
$ fixgen sample.fixgen -f csv -o fixtures
```
-And it generates two files: fixtures/purchase.csv, fixtures/user.csv. Bam! Simple as that.
+Or just generate in-line:
+
+```sh
+$ fixgen "user (2): id uuidv4, name name; purchase (10): id uuidv4, buyer user.id, amount int<1,40>
+```
+
+For it to generate two files with fake relational data: fixtures/purchase.csv, fixtures/user.csv. Bam! Simple as that.
You can then import it into your SQL server with simple copy from commands
@@ -27,7 +38,7 @@ COPY users FROM '/fixtures/user.csv' CSV HEADER;
COPY purchases FROM '/fixtures/purchase.csv' CSV HEADER;
```
-Or maybe export as json instead to import into your NoSQL DB.
+Or maybe export as JSON instead to import into your NoSQL DB.
## Development - Prerequisites