We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af8e62a commit 32c30d1Copy full SHA for 32c30d1
2 files changed
.github/setup_env.sh
@@ -0,0 +1,6 @@
1
+#! /usr/bin/env bash
2
+
3
+if [ ! -f .env ];
4
+then
5
+ cp .env.example .env
6
+fi
Makefile
@@ -1,6 +1,6 @@
install:
pip install -e ".[dev]" --config-settings editable_mode=compat
- if [ ! -f .env ]; then cp .env.example .env; fi
+ bash .github/setup_env.sh
debug:
FLASK_APP=policyengine_api.api FLASK_DEBUG=1 flask run --without-threads
0 commit comments