mirror of
https://github.com/penpot/penpot.git
synced 2025-06-03 21:01:37 +02:00
🚧 Improve build scripts.
This commit is contained in:
parent
b5c8afe69f
commit
94fe18b4ae
12 changed files with 649 additions and 449 deletions
14
backend/bin/start
Executable file
14
backend/bin/start
Executable file
|
@ -0,0 +1,14 @@
|
|||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
if [ ! -e ~/local/.fixtures-loaded ]; then
|
||||
echo "Loading fixtures..."
|
||||
clojure -Adev -m uxbox.fixtures
|
||||
touch ~/local/.fixtures-loaded
|
||||
fi
|
||||
|
||||
clojure -J-XX:-OmitStackTraceInFastThrow -m uxbox.main
|
||||
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue