0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-02-09 16:48:16 -05:00
penpot/backend/scripts/start-dev

14 lines
187 B
Text
Raw Normal View History

2019-12-09 16:29:26 +01:00
#!/bin/sh
set -e
if [ ! -e ~/local/.fixtures-loaded ]; then
echo "Loading fixtures..."
clojure -Adev -X:fn-fixtures
2019-12-09 16:29:26 +01:00
touch ~/local/.fixtures-loaded
fi
clojure -m app.main
2019-12-09 16:29:26 +01:00