blob: 7c91455a0e8e44a1420e754055de5a7f5ef8129b [file] [log] [blame]
Rushabh Mehta81af2292016-12-09 17:29:19 +05301from __future__ import unicode_literals
2
Nabin Hait7ba4d022015-11-05 16:55:10 +05303source_link = "https://github.com/frappe/erpnext"
4docs_base_url = "https://frappe.github.io/erpnext"
Rushabh Mehtabead70b2017-07-28 11:44:08 +05305headline = "ERP Made Simple"
6sub_heading = "ERPNext User Guides and API References"
7long_description = """
8ERPNext is a fully featured ERP system designed for Small and Medium Sized
Rushabh Mehtaedc8ab02015-11-18 16:48:19 +05309business. ERPNext covers a wide range of features including Accounting, CRM,
10Inventory management, Selling, Purchasing, Manufacturing, Projects, HR &
11Payroll, Website, E-Commerce and much more.
Nabin Hait7ba4d022015-11-05 16:55:10 +053012
Rushabh Mehtaedc8ab02015-11-18 16:48:19 +053013ERPNext is based on the Frappe Framework is highly customizable and extendable.
14You can create Custom Form, Fields, Scripts and can also create your own Apps
15to extend ERPNext functionality.
Nabin Hait7ba4d022015-11-05 16:55:10 +053016
Rushabh Mehtaedc8ab02015-11-18 16:48:19 +053017ERPNext is Open Source under the GNU General Public Licence v3 and has been
Umair Sayyed6a3f51b2016-08-03 17:07:26 +053018listed as one of the Best Open Source Softwares in the world by many online
Rushabh Mehtabead70b2017-07-28 11:44:08 +053019blogs.
20
21### Getting Started
22
23To install ERPNext on a server, you will need to install [Frappe Bench](https://github.com/frappe/bench).
24
25You can also start a free 30 day trial at [https://erpnext.com](https://erpnext.com)
26
27"""
Nabin Hait7ba4d022015-11-05 16:55:10 +053028
Rushabh Mehta2f273672015-12-04 16:00:38 +053029splash_light_background = True
Rushabh Mehta81af2292016-12-09 17:29:19 +053030google_analytics_id = 'UA-8911157-22'
Rushabh Mehtaab7021c2015-12-03 17:52:46 +053031
Nabin Hait7ba4d022015-11-05 16:55:10 +053032def get_context(context):
Rushabh Mehta0d5d4ae2016-11-21 18:47:00 +053033 context.brand_html = ('<img class="brand-logo" src="'+context.docs_base_url
34 +'/assets/img/erpnext-docs.png"> ERPNext</img>')
Rushabh Mehta2f273672015-12-04 16:00:38 +053035 context.app.splash_light_background = True
Nabin Haitf9ef0e42015-11-06 15:43:32 +053036 context.top_bar_items = [
Rushabh Mehtaab7021c2015-12-03 17:52:46 +053037 {"label": "User Manual", "url": context.docs_base_url + "/user/manual", "right": 1},
Nabin Haitf9ef0e42015-11-06 15:43:32 +053038 {"label": "Videos", "url": context.docs_base_url + "/user/videos", "right": 1},
Rushabh Mehta0d5d4ae2016-11-21 18:47:00 +053039 {"label": "API", "url": context.docs_base_url + "/current", "right": 1},
40 {"label": "Forum", "url": 'https://discuss.erpnext.com', "right": 1}
Anand Doshi1c1eb702015-11-10 18:58:56 +053041 ]