2021-03-23 23:11:57 +03:00
|
|
|
# owl
|
|
|
|
|
2021-03-28 13:21:31 +03:00
|
|
|
![](https://img.shields.io/badge/owl-v1.1-blueviolet)
|
2021-03-23 23:11:57 +03:00
|
|
|
|
|
|
|
**owl** — is the minimalistic kn**owl**edge base web app written in Python.
|
|
|
|
|
|
|
|
See full docs and demo here: [https://owl.gch.icu/docs/](https://owl.gch.icu/docs/).
|
|
|
|
|
|
|
|
Run **owl** in five lines:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
python3 -m venv env
|
|
|
|
source env/bin/activate
|
|
|
|
git clone https://github.com/gechandesu/owl.git && cd owl
|
|
|
|
pip install -r requirements.txt
|
|
|
|
python owl.py
|
|
|
|
```
|
|
|
|
|
|
|
|
App is now available at [http://localhost:5000/](http://localhost:5000/).
|
|
|
|
|
|
|
|
**owl** doesn't use a database, all files are stored in plain text.
|
|
|
|
|
|
|
|
This solution is suitable for creating documentation or maintaining a personal knowledge base.
|
|
|
|
|
2021-03-28 13:21:31 +03:00
|
|
|
New in `v1.1`:
|
|
|
|
- Switched to [Python-Markdown](https://github.com/Python-Markdown/markdown).
|
|
|
|
- Added some new Markdown extensions.
|
2021-03-23 23:11:57 +03:00
|
|
|
|
2021-03-28 13:21:31 +03:00
|
|
|
See [CHANGELOG.md](CHANGELOG.md).
|
2021-03-23 23:11:57 +03:00
|
|
|
|
|
|
|
# License
|
|
|
|
|
|
|
|
This software is licensed under The Unlicense. See [LICENSE](LICENSE).
|