-
Notifications
You must be signed in to change notification settings - Fork 438
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
README: Include more information, new screenshot #867
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,14 +4,59 @@ Isso – *Ich schrei sonst* – is a lightweight commenting server written in | |
Python and JavaScript. It aims to be a drop-in replacement for | ||
[Disqus](http://disqus.com). | ||
|
||
See **[posativ.org/isso](http://posativ.org/isso/)** for more details and | ||
documentation. | ||
## Features | ||
|
||
![Isso in Action](http://posativ.org/~tmp/isso-sample.png) | ||
- **Comments written in Markdown** | ||
Users can edit or delete own comments (within 15 minutes by default). | ||
Comments in moderation queue are not publicly visible before activation. | ||
- **SQLite backend** | ||
*Because comments are not Big Data.* | ||
- **Disqus & WordPress Import** | ||
You can migrate your Disqus/WordPress comments without any hassle. | ||
- **Configurable JS client** | ||
Embed a single JS file, 65kB (20kB gzipped) and you are done. | ||
|
||
## License | ||
MIT, see [LICENSE](LICENSE). | ||
See **[posativ.org/isso](http://posativ.org/isso/)** for a **live demo**, more | ||
details and [documentation](https://posativ.org/isso/docs/). | ||
|
||
## Screenshot | ||
|
||
![Isso in Action](https://user-images.githubusercontent.com/10212877/167268553-3f30b448-25ff-4850-afef-df2f2e599c93.png) | ||
|
||
## Geting started | ||
|
||
**Requirements** | ||
- Python 3.6+ (+ devel headers) | ||
- SQLite 3.3.8 or later | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. SQLite3 is bundled with python, isn't it? You don't really need the command-line tool. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same as for the devel headers, let's verify and then I'm not at all opposed to removing those docs lines. |
||
- a working C compiler | ||
|
||
Install Isso from [PyPi](https://pypi.python.org/pypi/isso/): | ||
|
||
```console | ||
pip install isso | ||
``` | ||
|
||
## Development | ||
Then, follow the [Quickstart](https://posativ.org/isso/docs/quickstart/) guide. | ||
|
||
If you're stuck, follow the [Install guide](https://posativ.org/isso/docs/install/), | ||
see [Troubleshooting](https://posativ.org/isso/docs/troubleshooting/) and browse | ||
the [the full documentation](https://posativ.org/isso/docs/). | ||
|
||
## Contributing | ||
- Pull requests are very much welcome! These might be | ||
[good first issues](https://github.com/posativ/isso/labels/good-first-issue) | ||
- See [Ways to Contribute](https://posativ.org/isso/contribute/) | ||
- [Translate](https://posativ.org/isso/contribute/#translations) | ||
|
||
### Development | ||
<!-- TODO also mention "Development & Testing" section once new docs uploaded --> | ||
Refer to the docs for | ||
[Installing from Source](https://posativ.org/isso/docs/install/#install-from-source). | ||
|
||
### Help | ||
- Join `#isso` via [Matrix](https://matrix.to/#/#isso:libera.chat) or via IRC on | ||
[Libera.Chat](https://libera.chat/) | ||
- Ask a question on [GitHub Discussions](https://github.com/posativ/isso/discussions). | ||
|
||
## License | ||
MIT, see [LICENSE](LICENSE). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do we need devel headers or a C compiler? @ix5
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was a copy-paste from the docs. Probably necessary for misaka and CFFI things?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like you were also the one who added it to the docs in 93d05c4
I don't think we need C headers for something that's CFFI.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Devel headers were added way back in d1a0b3f6, I just happen to show up in the blame logs because I bumped versions a couple of times and moved files ;)
As for the validity, maybe we ought to collect empirical data by removing devel headers from our respective systems and seeing whether a full installation in a clean virtualenv (including misaka CFFI compilation) still works.