Skip to content

Oogway-Technologies/backend_server_template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

backend_server_template

Simple template for a back-end service using Tornado.

This is just a simple template for building a back-end service to run, for example, on an EC2 instance.

You can test it locally, e.gg, using Postman or Python:

import json
import requests

url = "http://localhost:8001/api_endpoint?key=123"

payload = json.dumps({
  "body_key": "my body"
})
headers = {
  'Content-Type': 'application/json'
}

response = requests.request("POST", url, headers=headers, data=payload)

print(response.text)

About

Simple template for a back-end service using Tornado

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages