mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-18 14:15:09 +00:00
13 lines
No EOL
216 B
Bash
Executable file
13 lines
No EOL
216 B
Bash
Executable file
#!/bin/bash
|
|
|
|
APP_NAME=${1}
|
|
APP_REPO=${2}
|
|
|
|
cd /home/frappe/frappe-bench/
|
|
|
|
. env/bin/activate
|
|
|
|
cd apps
|
|
|
|
git clone --depth 1 -o upstream ${APP_REPO}
|
|
pip3 install --no-cache-dir -e /home/frappe/frappe-bench/apps/APP_NAME |