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

14 lines
186 B
Text
Raw Normal View History

2019-12-09 10:29:26 -05:00
#!/bin/sh
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