This repository was archived by the owner on Nov 9, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +29
-14
lines changed
Expand file tree Collapse file tree 6 files changed +29
-14
lines changed Original file line number Diff line number Diff line change 33* .egg-info
44* .swp
55tags
6- chat /docs /current
6+ chat /docs /current
7+ chat /www /test.html
8+ chat /www /test.js
9+ __pycache__
Original file line number Diff line number Diff line change 66app_description = "Chat application for frappe"
77app_icon = "octicon octicon-file-directory"
88app_color = "grey"
9- app_email = "pukimonlegend @gmail.com"
9+ app_email = "nihalmittal47 @gmail.com"
1010app_license = "MIT"
1111
1212# Includes in <head>
1313# ------------------
1414
1515# include js, css files in header of desk.html
1616# app_include_css = "/assets/chat/css/chat.css"
17- # app_include_js = "/assets/chat/js/chat.js"
17+ app_include_js = "/assets/chat/js/chat.js"
1818
1919# include js, css files in header of web template
2020# web_include_css = "/assets/chat/css/chat.css"
181181# auth_hooks = [
182182# "chat.auth.validate"
183183# ]
184-
Original file line number Diff line number Diff line change 1+ {
2+ "chat/js/chat.js" : [" public/js/chat.js" ]
3+ }
Original file line number Diff line number Diff line change 1+ // frappe.require(
2+ // [
3+ // 'assets/frappe/js/lib/socket.io.min.js',
4+ // 'assets/frappe/js/frappe/socketio_client.js',
5+ // ],
6+ // () => {
7+ // // socket io is loaded
8+ // frappe.socketio.init(9000);
9+ // }
10+ // );
Original file line number Diff line number Diff line change 11from setuptools import setup , find_packages
22
33with open ('requirements.txt' ) as f :
4- install_requires = f .read ().strip ().split ('\n ' )
4+ install_requires = f .read ().strip ().split ('\n ' )
55
66# get version from __version__ variable in chat/__init__.py
77from chat import __version__ as version
88
99setup (
10- name = 'chat' ,
11- version = version ,
12- description = 'Chat application for frappe' ,
13- author = 'codescientist703' ,
14- author_email = 'pukimonlegend @gmail.com' ,
15- packages = find_packages (),
16- zip_safe = False ,
17- include_package_data = True ,
18- install_requires = install_requires
10+ name = 'chat' ,
11+ version = version ,
12+ description = 'Chat application for frappe' ,
13+ author = 'codescientist703' ,
14+ author_email = 'nihalmittal47 @gmail.com' ,
15+ packages = find_packages (),
16+ zip_safe = False ,
17+ include_package_data = True ,
18+ install_requires = install_requires
1919)
You can’t perform that action at this time.
0 commit comments