2
0
mirror of https://github.com/frappe/bench.git synced 2025-02-02 10:58:24 +00:00

fix: update easy install location

This commit is contained in:
Gavin D'souza 2020-05-02 20:07:16 +05:30
parent 1ba8c463de
commit 803fa2d6ac
5 changed files with 7 additions and 7 deletions

View File

@ -58,17 +58,17 @@ matrix:
- name: "Python 3.6 Easy Install" - name: "Python 3.6 Easy Install"
python: 3.6 python: 3.6
env: TEST=easy_install env: TEST=easy_install
script: sudo python $TRAVIS_BUILD_DIR/playbooks/install.py --user travis --run-travis --production --verbose script: sudo python $TRAVIS_BUILD_DIR/install.py --user travis --run-travis --production --verbose
- name: "Python 3.7 Easy Install" - name: "Python 3.7 Easy Install"
python: 3.7 python: 3.7
env: TEST=easy_install env: TEST=easy_install
script: sudo python $TRAVIS_BUILD_DIR/playbooks/install.py --user travis --run-travis --production --verbose script: sudo python $TRAVIS_BUILD_DIR/install.py --user travis --run-travis --production --verbose
- name: "Python 3.8 Easy Install" - name: "Python 3.8 Easy Install"
python: 3.8 python: 3.8
env: TEST=easy_install env: TEST=easy_install
script: sudo python $TRAVIS_BUILD_DIR/playbooks/install.py --user travis --run-travis --production --verbose script: sudo python $TRAVIS_BUILD_DIR/install.py --user travis --run-travis --production --verbose
install: install:
- pip install urllib3 pyOpenSSL ndg-httpsclient pyasn1 - pip install urllib3 pyOpenSSL ndg-httpsclient pyasn1

View File

@ -132,7 +132,7 @@ You need to install the following packages for the script to run:
Download the Easy Install script and execute it: Download the Easy Install script and execute it:
```sh ```sh
$ wget https://raw.githubusercontent.com/frappe/bench/master/playbooks/install.py $ wget https://raw.githubusercontent.com/frappe/bench/master/install.py
$ python3 install.py --production $ python3 install.py --production
``` ```

View File

@ -1,5 +1,5 @@
#!/bin/bash -eux #!/bin/bash -eux
# Install ERPNext # Install ERPNext
wget https://raw.githubusercontent.com/frappe/bench/master/playbooks/install.py wget https://raw.githubusercontent.com/frappe/bench/master/install.py
python install.py --develop --user frappe --mysql-root-password frappe --admin-password admin python install.py --develop --user frappe --mysql-root-password frappe --admin-password admin

View File

@ -1,5 +1,5 @@
#!/bin/bash -eux #!/bin/bash -eux
# Install ERPNext # Install ERPNext
wget https://raw.githubusercontent.com/frappe/bench/master/playbooks/install.py wget https://raw.githubusercontent.com/frappe/bench/master/install.py
python install.py --production --user frappe --mysql-root-password frappe --admin-password admin python install.py --production --user frappe --mysql-root-password frappe --admin-password admin