Skip to content

Latest commit

 

History

History
55 lines (39 loc) · 1.85 KB

File metadata and controls

55 lines (39 loc) · 1.85 KB

0. Set up the correct frappe branch

Currently we rely on a custom frappe branch that adds a couple of fixes to version-13:

cd apps/frappe
git remote add alyf https://github.com/alyf-de/frappe
git checkout --track alyf/landa-version-13

1. Create a site

bench new-site [site-name] --install-app erpnext

2. Complete the setup wizard

Open the browser and complete the setup wizard, for example with the following values:

Field Value Comment
Language English
Your Country Germany
Domains Non Profit (beta)
Company Name Landesverband Sächsischer Angler
Company Abbreviation LV
What does it do? Landesverband Sächsischer Angler
Bank Name Default Bank Account
Chart of Accounts Standard with Numbers

3. Install landa

ERPNext must be already installed and the setup wizard completed before installing landa.

bench get-app https://github.com/alyf-de/landa
bench --site [site-name] install-app landa
bench --site [site-name] migrate # currently necessary to get the "Member Count" chart

Reinstallation (developers only)

Warning: all site data will get deleted by the following commands

  1. Uninstall landa and reinstall the site

    bench --site [site-name] uninstall-app landa
    bench --site [site-name] reinstall
  2. Open your browser and complete the setup wizard, as described above.

  3. Install landa, as described above.