mirror of
https://github.com/penpot/penpot.git
synced 2025-04-09 21:41:23 -05:00
🐛 Ensure frontend css folders exists
Signed-off-by: mathieu.brunot <mathieu.brunot@monogramm.io>
This commit is contained in:
parent
95fa00e4fc
commit
2183c37373
1 changed files with 15 additions and 4 deletions
19
manage.sh
19
manage.sh
|
@ -34,6 +34,9 @@ function run-devenv {
|
|||
|
||||
mkdir -p $HOME/.m2
|
||||
rm -rf ./frontend/node_modules
|
||||
mkdir -p \
|
||||
./frontend/resources/public/css \
|
||||
./frontend/resources/public/view/css
|
||||
|
||||
CONTAINER=$IMGNAME:latest
|
||||
|
||||
|
@ -132,10 +135,9 @@ function usage {
|
|||
echo "- clean Stop and clean up docker containers"
|
||||
echo "- build-devenv Build docker container for development with tmux"
|
||||
echo "- run-devenv Run (and build if necessary) development container (frontend at localhost:3449, backend at localhost:6060)"
|
||||
# TODO Add unit test command(s)
|
||||
#echo "- test Execute unit tests for both backend and frontend"
|
||||
#echo "- test-frontend Execute unit tests for frontend only"
|
||||
#echo "- test-backend Execute unit tests for backend only"
|
||||
echo "- test Execute unit tests for both backend and frontend"
|
||||
echo "- test-frontend Execute unit tests for frontend only"
|
||||
echo "- test-backend Execute unit tests for backend only"
|
||||
echo "- build-release Build 'production ready' docker images for both backend and frontend"
|
||||
echo "- build-release-frontend Build a 'production ready' docker images for frontend only"
|
||||
echo "- build-release-backend Build a 'production ready' docker images for backend only"
|
||||
|
@ -153,6 +155,15 @@ case $1 in
|
|||
run-devenv)
|
||||
run-devenv
|
||||
;;
|
||||
test)
|
||||
test
|
||||
;;
|
||||
test-frontend)
|
||||
test-frontend
|
||||
;;
|
||||
test-backend)
|
||||
test-backend
|
||||
;;
|
||||
build-release)
|
||||
build-release
|
||||
;;
|
||||
|
|
Loading…
Add table
Reference in a new issue