0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-09 16:30:37 -05:00
penpot/backend/bin/start-dev

14 lines
192 B
Text
Raw Normal View History

2019-12-09 10:29:26 -05:00
#!/bin/sh
set -e
if [ ! -e ~/local/.fixtures-loaded ]; then
echo "Loading fixtures..."
clojure -Adev -m uxbox.fixtures
touch ~/local/.fixtures-loaded
fi
2019-12-19 06:50:58 -05:00
clojure -m uxbox.main
2019-12-09 10:29:26 -05:00