commit d7c7674e6ac5660da14897131f13253455400048 Author: snehalathad Date: Mon Mar 11 18:19:29 2024 +0530 feat: Initialize App diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ba04025 --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +.DS_Store +*.pyc +*.egg-info +*.swp +tags +node_modules +__pycache__ \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..20842ae --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +## Playbook + +Playbook app + +#### License + +mit \ No newline at end of file diff --git a/license.txt b/license.txt new file mode 100644 index 0000000..8aa2645 --- /dev/null +++ b/license.txt @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) [year] [fullname] + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/playbook/__init__.py b/playbook/__init__.py new file mode 100644 index 0000000..f102a9c --- /dev/null +++ b/playbook/__init__.py @@ -0,0 +1 @@ +__version__ = "0.0.1" diff --git a/playbook/config/__init__.py b/playbook/config/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/playbook/hooks.py b/playbook/hooks.py new file mode 100644 index 0000000..d1d5e72 --- /dev/null +++ b/playbook/hooks.py @@ -0,0 +1,229 @@ +app_name = "playbook" +app_title = "Playbook" +app_publisher = "snehalatha" +app_description = "Playbook app" +app_email = "snehalathad@aissel.com" +app_license = "mit" +# required_apps = [] + +# Includes in +# ------------------ + +# include js, css files in header of desk.html +# app_include_css = "/assets/playbook/css/playbook.css" +# app_include_js = "/assets/playbook/js/playbook.js" + +# include js, css files in header of web template +# web_include_css = "/assets/playbook/css/playbook.css" +# web_include_js = "/assets/playbook/js/playbook.js" + +# include custom scss in every website theme (without file extension ".scss") +# website_theme_scss = "playbook/public/scss/website" + +# include js, css files in header of web form +# webform_include_js = {"doctype": "public/js/doctype.js"} +# webform_include_css = {"doctype": "public/css/doctype.css"} + +# include js in page +# page_js = {"page" : "public/js/file.js"} + +# include js in doctype views +# doctype_js = {"doctype" : "public/js/doctype.js"} +# doctype_list_js = {"doctype" : "public/js/doctype_list.js"} +# doctype_tree_js = {"doctype" : "public/js/doctype_tree.js"} +# doctype_calendar_js = {"doctype" : "public/js/doctype_calendar.js"} + +# Svg Icons +# ------------------ +# include app icons in desk +# app_include_icons = "playbook/public/icons.svg" + +# Home Pages +# ---------- + +# application home page (will override Website Settings) +# home_page = "login" + +# website user home page (by Role) +# role_home_page = { +# "Role": "home_page" +# } + +# Generators +# ---------- + +# automatically create page for each record of this doctype +# website_generators = ["Web Page"] + +# Jinja +# ---------- + +# add methods and filters to jinja environment +# jinja = { +# "methods": "playbook.utils.jinja_methods", +# "filters": "playbook.utils.jinja_filters" +# } + +# Installation +# ------------ + +# before_install = "playbook.install.before_install" +# after_install = "playbook.install.after_install" + +# Uninstallation +# ------------ + +# before_uninstall = "playbook.uninstall.before_uninstall" +# after_uninstall = "playbook.uninstall.after_uninstall" + +# Integration Setup +# ------------------ +# To set up dependencies/integrations with other apps +# Name of the app being installed is passed as an argument + +# before_app_install = "playbook.utils.before_app_install" +# after_app_install = "playbook.utils.after_app_install" + +# Integration Cleanup +# ------------------- +# To clean up dependencies/integrations with other apps +# Name of the app being uninstalled is passed as an argument + +# before_app_uninstall = "playbook.utils.before_app_uninstall" +# after_app_uninstall = "playbook.utils.after_app_uninstall" + +# Desk Notifications +# ------------------ +# See frappe.core.notifications.get_notification_config + +# notification_config = "playbook.notifications.get_notification_config" + +# Permissions +# ----------- +# Permissions evaluated in scripted ways + +# permission_query_conditions = { +# "Event": "frappe.desk.doctype.event.event.get_permission_query_conditions", +# } +# +# has_permission = { +# "Event": "frappe.desk.doctype.event.event.has_permission", +# } + +# DocType Class +# --------------- +# Override standard doctype classes + +# override_doctype_class = { +# "ToDo": "custom_app.overrides.CustomToDo" +# } + +# Document Events +# --------------- +# Hook on document methods and events + +# doc_events = { +# "*": { +# "on_update": "method", +# "on_cancel": "method", +# "on_trash": "method" +# } +# } + +# Scheduled Tasks +# --------------- + +# scheduler_events = { +# "all": [ +# "playbook.tasks.all" +# ], +# "daily": [ +# "playbook.tasks.daily" +# ], +# "hourly": [ +# "playbook.tasks.hourly" +# ], +# "weekly": [ +# "playbook.tasks.weekly" +# ], +# "monthly": [ +# "playbook.tasks.monthly" +# ], +# } + +# Testing +# ------- + +# before_tests = "playbook.install.before_tests" + +# Overriding Methods +# ------------------------------ +# +# override_whitelisted_methods = { +# "frappe.desk.doctype.event.event.get_events": "playbook.event.get_events" +# } +# +# each overriding function accepts a `data` argument; +# generated from the base implementation of the doctype dashboard, +# along with any modifications made in other Frappe apps +# override_doctype_dashboards = { +# "Task": "playbook.task.get_dashboard_data" +# } + +# exempt linked doctypes from being automatically cancelled +# +# auto_cancel_exempted_doctypes = ["Auto Repeat"] + +# Ignore links to specified DocTypes when deleting documents +# ----------------------------------------------------------- + +# ignore_links_on_delete = ["Communication", "ToDo"] + +# Request Events +# ---------------- +# before_request = ["playbook.utils.before_request"] +# after_request = ["playbook.utils.after_request"] + +# Job Events +# ---------- +# before_job = ["playbook.utils.before_job"] +# after_job = ["playbook.utils.after_job"] + +# User Data Protection +# -------------------- + +# user_data_fields = [ +# { +# "doctype": "{doctype_1}", +# "filter_by": "{filter_by}", +# "redact_fields": ["{field_1}", "{field_2}"], +# "partial": 1, +# }, +# { +# "doctype": "{doctype_2}", +# "filter_by": "{filter_by}", +# "partial": 1, +# }, +# { +# "doctype": "{doctype_3}", +# "strict": False, +# }, +# { +# "doctype": "{doctype_4}" +# } +# ] + +# Authentication and authorization +# -------------------------------- + +# auth_hooks = [ +# "playbook.auth.validate" +# ] + +# Automatically update python controller files with type annotations for this app. +# export_python_type_annotations = True + +# default_log_clearing_doctypes = { +# "Logging DocType Name": 30 # days to retain logs +# } + diff --git a/playbook/modules.txt b/playbook/modules.txt new file mode 100644 index 0000000..3f393b4 --- /dev/null +++ b/playbook/modules.txt @@ -0,0 +1 @@ +Playbook \ No newline at end of file diff --git a/playbook/patches.txt b/playbook/patches.txt new file mode 100644 index 0000000..f15c3a9 --- /dev/null +++ b/playbook/patches.txt @@ -0,0 +1,6 @@ +[pre_model_sync] +# Patches added in this section will be executed before doctypes are migrated +# Read docs to understand patches: https://frappeframework.com/docs/v14/user/en/database-migrations + +[post_model_sync] +# Patches added in this section will be executed after doctypes are migrated \ No newline at end of file diff --git a/playbook/playbook/__init__.py b/playbook/playbook/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/playbook/public/.gitkeep b/playbook/public/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/playbook/templates/__init__.py b/playbook/templates/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/playbook/templates/pages/__init__.py b/playbook/templates/pages/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..ce1e6cd --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,20 @@ +[project] +name = "playbook" +authors = [ + { name = "snehalatha", email = "snehalathad@aissel.com"} +] +description = "Playbook app" +requires-python = ">=3.10" +readme = "README.md" +dynamic = ["version"] +dependencies = [ + # "frappe~=15.0.0" # Installed and managed by bench. +] + +[build-system] +requires = ["flit_core >=3.4,<4"] +build-backend = "flit_core.buildapi" + +# These dependencies are only installed when developer mode is enabled +[tool.bench.dev-dependencies] +# package_name = "~=1.1.0"