An open API service indexing awesome lists of open source software.

https://github.com/yanggujun/meagram

a web framework from scratch
https://github.com/yanggujun/meagram

Last synced: 4 months ago
JSON representation

a web framework from scratch

Awesome Lists containing this project

README

          

# meagram

in Latin, "mea" means "my own" and in Greek "gram" means "things written"

run with uwsgi

> uwsgi --http-socket --wsgi-file host.py

or
> uwsgi --http : -w :

configure nginx
```
http {
#other configuration

server {
location / {
include uwsgi_params;
uwsgi_pass ;
}
}
```