Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/SolidOS/chat-pane
Solid-compatible chat discussion applet for solid-panes framework
https://github.com/SolidOS/chat-pane
chat running-code
Last synced: about 1 month ago
JSON representation
Solid-compatible chat discussion applet for solid-panes framework
- Host: GitHub
- URL: https://github.com/SolidOS/chat-pane
- Owner: SolidOS
- License: mit
- Created: 2018-07-31T13:35:33.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2024-04-03T15:21:27.000Z (8 months ago)
- Last Synced: 2024-05-28T21:54:42.610Z (7 months ago)
- Topics: chat, running-code
- Language: JavaScript
- Homepage:
- Size: 5.34 MB
- Stars: 10
- Watchers: 13
- Forks: 4
- Open Issues: 32
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-starred - SolidOS/chat-pane - Solid-compatible chat discussion applet for solid-panes framework (others)
README
# chat-pane
Solid-compatible chat discussion applet for solid-panes framework
Extracted from the solid-panes monolithic repository.
Do add your wishlists to the issue list for a solid based (safe based etc) chat system. Things other chat systems you ave seen do, Things you can imagine a solid chat system doing because it is linked data, things you think would really help people collaborate
You can build with `npm install && npm run build && cd dist && npx serve`.
You can debug with VSCode + Chrome (see `.vscode/launch.json`).## Development
`npm run dev`## Deploy stand-alone
You can deploy this code as a stand-alone Solid app.
The way to do that depends on your html-app hosting provider.
For instance, to deploy to https://solid-chat.5apps.com/ you would:```sh
git checkout deploy # this branch has dist/ commented out in .gitignore
git merge master
npm ci
npm run build
git add dist/
git commit --no-verify -am"build"
git remote add 5apps [email protected]:michiel_chat.git
git push 5apps deploy:master
```