forum-django/README.md

22 lines
1.1 KiB
Markdown
Raw Normal View History

2015-02-22 18:22:51 +01:00
# forum-django
2015-08-15 17:27:22 +02:00
2017-01-01 18:51:52 +01:00
[![Build Status](https://travis-ci.org/karolyi/forum-django.svg?branch=development)](https://travis-ci.org/karolyi/forum-django)
2017-01-09 23:38:05 +01:00
[![Coverage Status](https://coveralls.io/repos/github/karolyi/forum-django/badge.svg?branch=development)](https://coveralls.io/github/karolyi/forum-django?branch=development)
2015-08-15 17:27:22 +02:00
[![Code Issues](https://www.quantifiedcode.com/api/v1/project/ca3d90d5cb0e43e381274d6f48463a97/badge.svg)](https://www.quantifiedcode.com/app/project/ca3d90d5cb0e43e381274d6f48463a97)
2017-01-09 23:38:05 +01:00
This project is a rewrite of my old, PHP-MySQL based forum from 2004, [https://crxforum.ksol.io](https://crxforum.ksol.io).
2017-01-09 23:38:05 +01:00
2023-07-22 13:12:07 +02:00
I'm rewriting the whole thing in Django, using jQuery/TypeScript/Webpack, and also adding new features to it over time.
2017-01-09 23:38:05 +01:00
In case of using MariaDB, this project needs MariaDB >= 10.4, as the [BLOB unique indexes weren't available before that](https://mariadb.com/kb/en/blob/#indexing).
2023-06-27 14:49:05 +02:00
# Python packages update
`tools/update-python-packages.sh`
Until https://github.com/yaml/pyyaml/pull/618/ gets merged, on FreeBSD install PyYAML with:
```shell
C_INCLUDE_PATH=/usr/local/include/ PYYAML_FORCE_LIBYAML=1 python -m pip install pyyaml
```