0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-08 16:00:19 -05:00
penpot/backend/scripts/start-dev

16 lines
222 B
Text
Raw Normal View History

2019-12-09 10:29:26 -05:00
#!/bin/sh
2021-01-29 05:00:54 -05:00
export PENPOT_ASSERTS_ENABLED=true
set -ex
2019-12-09 10:29:26 -05:00
if [ ! -e ~/.fixtures-loaded ]; then
2019-12-09 10:29:26 -05:00
echo "Loading fixtures..."
clojure -Adev -X:fn-fixtures
touch ~/.fixtures-loaded
2019-12-09 10:29:26 -05:00
fi
clojure -A:dev -M -m app.main
2019-12-09 10:29:26 -05:00