mirror of
https://github.com/penpot/penpot.git
synced 2025-08-03 20:48:36 +02:00
🐳 Improve devenv and build steps (jvm-opts and upgrades).
This commit is contained in:
parent
009a626419
commit
df03b03818
9 changed files with 24 additions and 13 deletions
13
backend/bin/start-dev
Executable file
13
backend/bin/start-dev
Executable file
|
@ -0,0 +1,13 @@
|
|||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
if [ ! -e ~/local/.fixtures-loaded ]; then
|
||||
echo "Loading fixtures..."
|
||||
clojure -Adev -m uxbox.fixtures
|
||||
touch ~/local/.fixtures-loaded
|
||||
fi
|
||||
|
||||
clojure ${CLOJURE_OPTS} -m uxbox.main
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue