2018-06-14 14:40:35 -04:00
|
|
|
# Anonkun
|
|
|
|
By popular demand, I'm building a better anonkun. It doesn't do much right now though. Actual results in the decades to come.
|
|
|
|
|
|
|
|
## Requirements
|
2018-06-14 22:09:14 -04:00
|
|
|
Python 3.6+
|
2018-06-15 18:13:59 -04:00
|
|
|
MariaDB 10.2+
|
2018-06-16 03:17:00 -04:00
|
|
|
Python packages: `flask flask_socketio flask-paranoid passlib argon2_cffi bleach`
|
2018-06-15 18:13:59 -04:00
|
|
|
|
|
|
|
## Install
|
|
|
|
```
|
|
|
|
$ mysql -u root -p
|
|
|
|
mysql> CREATE DATABASE `anonkun` DEFAULT CHARACTER SET `utf8mb4` COLLATE `utf8mb4_general_ci`;
|
|
|
|
mysql> CREATE USER `anonkun`@'localhost' IDENTIFIED BY 'password';
|
|
|
|
mysql> GRANT ALL PRIVILEGES ON `anonkun`.* TO `anonkun`@`localhost`;
|
|
|
|
mysql> \q
|
|
|
|
```
|
|
|
|
1. Get on the floor
|
|
|
|
2. Walk the dinosaur
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
`gunicorn -b localhost:5050 --worker-class eventlet anonkun:app`
|
2018-06-14 14:40:35 -04:00
|
|
|
|
|
|
|
## Todo
|
|
|
|
Rename this project to something that doesn't mean "shit" in weebspeak.
|