aboutsummaryrefslogtreecommitdiffstats
path: root/src/run.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/run.py')
-rw-r--r--src/run.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/run.py b/src/run.py
new file mode 100644
index 0000000..2c61511
--- /dev/null
+++ b/src/run.py
@@ -0,0 +1,15 @@
+# System will run the current "run_config.json" file in the directory.
+# Use generator configuration to create it, or edit it directly, depending on your
+# preference. You may want to back it up as another file name to prevent the generator from
+# overwriting your config history.
+
+
+
+ENGINE = 'solid'
+# ENGINE = 'cadquery'
+
+if ENGINE == 'solid':
+ exec(open('dactyl_manuform.py').read())
+
+if ENGINE == 'cadquery':
+ exec(open('dactyl_manuform_cadquery.py').read())