Alternate reddit frontend. https://kddit.kalli.st
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Czar 173dd0a44b Merge pull request 'revamp' (#6) from refactoring into master 2 months ago
kddit revamp 2 months ago
static revamp 2 months ago
tests modified: kddit/html.py 2 years ago
.gitignore revamp 2 months ago
README.md change style 3 years ago
requirements.txt new file: kddit/__init__.py 2 years ago
wsgi.py new file: kddit/__init__.py 2 years ago

README.md

kddit.kalli.st

reddit frontend

Running

$ uwsgi --ini app.ini

requires python>=3.8

Nginx config

server {
    listen 80;
    merge_slashes off;
    location / {
        include uwsgi_params;
        uwsgi_pass unix:/path/to/kddit.kalli.st/socket;
    }
}