Search found 10 matches
- Sat Jun 05, 2021 7:27 am
- Forum: ERPNext / Frappe
- Topic: erpnext version-13 ubuntu-20
- Replies: 0
- Views: 136866
erpnext version-13 ubuntu-20
sudo apt update && apt upgrade -y && shutdown -r now curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash - sudo apt install -y nodejs mariadb-server redis-server python3-pip nginx python3-testresources sudo apt install -y python3-pip python3-testresources adduser erpnext na...
- Sat Aug 22, 2020 6:27 am
- Forum: General
- Topic: atom installation and extension
- Replies: 0
- Views: 102743
atom installation and extension
atom atom installation wget -O atom-amd64.deb https://atom.io/download/deb sudo apt install gdebi-core sudo gdebi atom-amd64.deb atom ================================ delete atom : sudo apt remove --purge atom sudo apt-get remove atom sudo rm -rf /usr/local/bin/atom && sudo rm -rf /usr/local...
- Mon Aug 17, 2020 7:56 am
- Forum: ERPNext / Frappe
- Topic: installation Guideline for frappe
- Replies: 0
- Views: 99387
installation Guideline for frappe
1 updating OS >> sudo apt-get update && sudo apt-get upgrade 2 install python and it is libraries and pip tool for managing : >> sudo apt -y install python-minimal >> python -V >> sudo apt -y install git build-essential python-setuptools python-dev libffi-dev libssl-dev >> wget https://boots...
- Sun Aug 16, 2020 10:53 am
- Forum: General
- Topic: getting branch from remote Repo to local Repo
- Replies: 0
- Views: 100042
getting branch from remote Repo to local Repo
>> bench get-app --branch stable-branch https://dev01.open-alt.com/open-alt/erpnext.git >> cd app/erpnext >> git remote rename upstream origin git config --unset-all remote.origin.fetch && git config --add remote.origin.fetch '+refs/heads/*:refs/remotes/origin/*' && git fetch origin...
- Sat Aug 15, 2020 7:57 pm
- Forum: ERPNext / Frappe
- Topic: Backup and restore frappe Site
- Replies: 0
- Views: 104721
Backup and restore frappe Site
>> cd bench-name ================================================== //back up ************ >> bench --site [sitename] backup >> bench --site [sitename] backup --with-files >> bench backup-all-sites Ex: >> bench --site smt-site-develop backup --with-files Path where the backup file will export to :: ...
- Mon Jul 13, 2020 10:39 am
- Forum: ERPNext / Frappe
- Topic: Unit Test
- Replies: 0
- Views: 98095
Unit Test
[*]Content :: 1. test_records.json 2. validate exception 3. unit test parts 4. Commends in bench frappe commend line *********************************************************************************************************** 1. test_records.json ----------------- demo dictionary for inserting data t...
- Fri Mar 13, 2020 10:51 am
- Forum: ERPNext / Frappe
- Topic: Style of Coding for frappe "Standard" Open-Alt
- Replies: 1
- Views: 122825
Re: Style of Coding for frappe "Standard" Open-Alt
From Guideline of frappe Standard for Contribution - naming should be https://github.com/frappe/erpnext/wiki/Naming-Guidelines#doctype-naming **DocType naming DocType names must be: 1. Title Case 2. Singular 3. Names with multiple words should be separated by a space. Example "Sales Invoice&quo...
- Fri Mar 13, 2020 6:31 am
- Forum: ERPNext / Frappe
- Topic: ModuleNotFoundError: No module named 'werkzeug.contrib'
- Replies: 0
- Views: 94257
ModuleNotFoundError: No module named 'werkzeug.contrib'
Code: Select all
cd bench-name
./env/bin/pip install werkzeug==0.16.0- Thu Mar 12, 2020 7:31 pm
- Forum: ERPNext / Frappe
- Topic: Style of Coding for frappe "Standard" Open-Alt
- Replies: 1
- Views: 122825
Style of Coding for frappe "Standard" Open-Alt
We applying this references for three reasons: make the code readable and understandable. make all team members writing code in the same way Accepting Open-alt contribution in frappe community References Contribution Guidelines from Frappe: "" Important "" https://github.com/frap...
- Sun Jan 26, 2020 6:14 am
- Forum: General
- Topic: Branching strategy
- Replies: 0
- Views: 102147
Branching strategy
to control workflow of development team in development, releasing, hot fix and deployment of application by branches. git-model@2x.png * The main branches 1. master is the branch for production 2. develop is the main branch for developing * Supporting branches these branches always have a limited li...