https://github.com/ranjian0/twistedxmlrpc
XMLRPC with twisted deployed to heroku
https://github.com/ranjian0/twistedxmlrpc
heroku python twisted xmlrpc
Last synced: 25 days ago
JSON representation
XMLRPC with twisted deployed to heroku
- Host: GitHub
- URL: https://github.com/ranjian0/twistedxmlrpc
- Owner: ranjian0
- Created: 2021-06-18T21:34:52.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-06-18T21:43:28.000Z (almost 5 years ago)
- Last Synced: 2025-06-28T06:37:30.998Z (12 months ago)
- Topics: heroku, python, twisted, xmlrpc
- Language: Python
- Homepage:
- Size: 233 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# twistedxmlrpc
XMLRPC with twisted deployed to heroku
## Local
```
> virtualenv venv
> source venv/bin/activate
> pip install -r requirements.txt
> twistd -y service.tac
> export DEBUG=True
> python tests/test.py
```
## Heroku
```
> heroku apps:create xmlrpctest
> heroku git:remote -a xmlrpctest
> git push heroku master
> export DEBUG=False
> python tests/tests.py
```