Skip to content
This repository has been archived by the owner on Apr 21, 2021. It is now read-only.
/ Dummy Public archive

A tiny telegram bot framework, simple and naive.

License

Notifications You must be signed in to change notification settings

StoneMoe/Dummy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dummy

A tiny fully dynamic telegram bot framework, simple and naive.

Quick Setup Example

0.Create a new bot via @BotFather

1.Edit config.py

2.Start your Dummy System:

# pip install Flask requests MySQL-Python uwsgi
# cd /path/to/git/root
# uwsgi --ini uwsgi.ini

3.Configure your Web Server like:

location / {
	uwsgi_pass unix:///tmp/dummysys.sock;
	include uwsgi_params;
}

location /public {
	root /path/to/git/root;
}

and reload it

# sudo systemctl reload nginx

4.Enjoy

About

A tiny telegram bot framework, simple and naive.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages