Rushabh Mehta | 81af229 | 2016-12-09 17:29:19 +0530 | [diff] [blame] | 1 | from __future__ import unicode_literals |
| 2 | |
Nabin Hait | 7ba4d02 | 2015-11-05 16:55:10 +0530 | [diff] [blame] | 3 | source_link = "https://github.com/frappe/erpnext" |
| 4 | docs_base_url = "https://frappe.github.io/erpnext" |
Rushabh Mehta | bead70b | 2017-07-28 11:44:08 +0530 | [diff] [blame] | 5 | headline = "ERP Made Simple" |
| 6 | sub_heading = "ERPNext User Guides and API References" |
| 7 | long_description = """ |
| 8 | ERPNext is a fully featured ERP system designed for Small and Medium Sized |
Rushabh Mehta | edc8ab0 | 2015-11-18 16:48:19 +0530 | [diff] [blame] | 9 | business. ERPNext covers a wide range of features including Accounting, CRM, |
| 10 | Inventory management, Selling, Purchasing, Manufacturing, Projects, HR & |
| 11 | Payroll, Website, E-Commerce and much more. |
Nabin Hait | 7ba4d02 | 2015-11-05 16:55:10 +0530 | [diff] [blame] | 12 | |
Rushabh Mehta | edc8ab0 | 2015-11-18 16:48:19 +0530 | [diff] [blame] | 13 | ERPNext is based on the Frappe Framework is highly customizable and extendable. |
| 14 | You can create Custom Form, Fields, Scripts and can also create your own Apps |
| 15 | to extend ERPNext functionality. |
Nabin Hait | 7ba4d02 | 2015-11-05 16:55:10 +0530 | [diff] [blame] | 16 | |
Rushabh Mehta | edc8ab0 | 2015-11-18 16:48:19 +0530 | [diff] [blame] | 17 | ERPNext is Open Source under the GNU General Public Licence v3 and has been |
Umair Sayyed | 6a3f51b | 2016-08-03 17:07:26 +0530 | [diff] [blame] | 18 | listed as one of the Best Open Source Softwares in the world by many online |
Rushabh Mehta | bead70b | 2017-07-28 11:44:08 +0530 | [diff] [blame] | 19 | blogs. |
| 20 | |
| 21 | ### Getting Started |
| 22 | |
| 23 | To install ERPNext on a server, you will need to install [Frappe Bench](https://github.com/frappe/bench). |
| 24 | |
| 25 | You can also start a free 30 day trial at [https://erpnext.com](https://erpnext.com) |
| 26 | |
| 27 | """ |
Nabin Hait | 7ba4d02 | 2015-11-05 16:55:10 +0530 | [diff] [blame] | 28 | |
Rushabh Mehta | 2f27367 | 2015-12-04 16:00:38 +0530 | [diff] [blame] | 29 | splash_light_background = True |
Rushabh Mehta | 81af229 | 2016-12-09 17:29:19 +0530 | [diff] [blame] | 30 | google_analytics_id = 'UA-8911157-22' |
Rushabh Mehta | ab7021c | 2015-12-03 17:52:46 +0530 | [diff] [blame] | 31 | |
Nabin Hait | 7ba4d02 | 2015-11-05 16:55:10 +0530 | [diff] [blame] | 32 | def get_context(context): |
Rushabh Mehta | 0d5d4ae | 2016-11-21 18:47:00 +0530 | [diff] [blame] | 33 | context.brand_html = ('<img class="brand-logo" src="'+context.docs_base_url |
| 34 | +'/assets/img/erpnext-docs.png"> ERPNext</img>') |
Rushabh Mehta | 2f27367 | 2015-12-04 16:00:38 +0530 | [diff] [blame] | 35 | context.app.splash_light_background = True |
Nabin Hait | f9ef0e4 | 2015-11-06 15:43:32 +0530 | [diff] [blame] | 36 | context.top_bar_items = [ |
Rushabh Mehta | ab7021c | 2015-12-03 17:52:46 +0530 | [diff] [blame] | 37 | {"label": "User Manual", "url": context.docs_base_url + "/user/manual", "right": 1}, |
Nabin Hait | f9ef0e4 | 2015-11-06 15:43:32 +0530 | [diff] [blame] | 38 | {"label": "Videos", "url": context.docs_base_url + "/user/videos", "right": 1}, |
Rushabh Mehta | 0d5d4ae | 2016-11-21 18:47:00 +0530 | [diff] [blame] | 39 | {"label": "API", "url": context.docs_base_url + "/current", "right": 1}, |
| 40 | {"label": "Forum", "url": 'https://discuss.erpnext.com', "right": 1} |
Anand Doshi | 1c1eb70 | 2015-11-10 18:58:56 +0530 | [diff] [blame] | 41 | ] |