mirror of
https://github.com/penpot/penpot.git
synced 2025-01-10 00:40:30 -05:00
15 lines
222 B
Bash
Executable file
15 lines
222 B
Bash
Executable file
#!/bin/sh
|
|
|
|
export PENPOT_ASSERTS_ENABLED=true
|
|
|
|
set -ex
|
|
|
|
if [ ! -e ~/.fixtures-loaded ]; then
|
|
echo "Loading fixtures..."
|
|
clojure -Adev -X:fn-fixtures
|
|
touch ~/.fixtures-loaded
|
|
fi
|
|
|
|
clojure -A:dev -M -m app.main
|
|
|
|
|