Skip to content

Latest commit

 

History

History

get-covid-stats

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

🦠 Get COVID-19 stats from an API

A Swift Cloud Function for fetching COVID information using Covid19Api.

Example input:

{
    "country": "NZ"
}

Example output:

{
    "country": "New Zealand",
    "confirmedCasesToday": 2,
    "recoveredToday": 4,
    "deathsToday": 0
}

📝 Environment Variables

No environment variables needed.

🚀 Deployment

  1. Clone this repository, and enter this function folder:
$ git clone https://github.com/open-runtimes/examples.git && cd examples
$ cd swift/convert_phone_number_to_country_name
  1. Enter this function folder and build the code:
docker run --rm --interactive --tty --volume $PWD:/usr/code openruntimes/swift:v2-5.5 sh /usr/local/src/build.sh

As a result, a code.tar.gz file will be generated.

  1. Start the Open Runtime:
docker run -p 3000:3000 -e INTERNAL_RUNTIME_KEY=secret-key --rm --interactive --tty --volume $PWD/code.tar.gz:/tmp/code.tar.gz:ro openruntimes/swift:v2-5.5 sh /usr/local/src/start.sh

Your function is now listening on port 3000, and you can execute it by sending POST request with appropriate authorization headers. To learn more about runtime, you can visit Swift runtime README.

📝 Notes

  • This function is designed for use with Appwrite Cloud Functions. You can learn more about it in Appwrite docs.
  • This example is compatible with Swift 5.5. Other versions may work but are not guarenteed to work as they haven't been tested.