├── .gitignore ├── MANIFEST.in ├── README.md ├── license.txt ├── real_estate ├── __init__.py ├── config │ ├── __init__.py │ ├── desktop.py │ └── docs.py ├── hooks.py ├── modules.txt ├── patches.txt ├── real_estate │ └── __init__.py └── templates │ ├── __init__.py │ └── pages │ └── __init__.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramoletane/real_estate/HEAD/.gitignore -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramoletane/real_estate/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramoletane/real_estate/HEAD/README.md -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- 1 | License: MIT -------------------------------------------------------------------------------- /real_estate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramoletane/real_estate/HEAD/real_estate/__init__.py -------------------------------------------------------------------------------- /real_estate/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_estate/config/desktop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramoletane/real_estate/HEAD/real_estate/config/desktop.py -------------------------------------------------------------------------------- /real_estate/config/docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramoletane/real_estate/HEAD/real_estate/config/docs.py -------------------------------------------------------------------------------- /real_estate/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramoletane/real_estate/HEAD/real_estate/hooks.py -------------------------------------------------------------------------------- /real_estate/modules.txt: -------------------------------------------------------------------------------- 1 | Real Estate -------------------------------------------------------------------------------- /real_estate/patches.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_estate/real_estate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_estate/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_estate/templates/pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | frappe -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramoletane/real_estate/HEAD/setup.py --------------------------------------------------------------------------------