mirror of
https://github.com/frappe/frappe_docker.git
synced 2024-11-08 14:21:05 +00:00
ca9761585a
* Remove git reference from install-app Also fixed issue with missing sites/assets folder * Update custom app guide according to changes * Ignore apps that have no frontend code instead of failing
14 lines
155 B
Bash
Executable File
14 lines
155 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
set -x
|
|
|
|
APP=$1
|
|
|
|
cd /home/frappe/frappe-bench
|
|
|
|
rm -rf "apps/$APP/.git"
|
|
|
|
env/bin/pip install -e "apps/$APP"
|
|
|
|
echo "$APP" >>sites/apps.txt
|