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
- Host: GitHub
- URL: https://github.com/yanggujun/meagram
- Owner: yanggujun
- License: mit
- Created: 2017-04-10T01:47:16.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-07-20T14:11:58.000Z (almost 9 years ago)
- Last Synced: 2025-10-14T12:58:03.945Z (8 months ago)
- Language: HTML
- Size: 82 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 ;
}
}
```