https://github.com/penguincabinet/fizzbuzz_google_cloud_functions
This is a FizzBuzz decision API that runs on Google Cloud Functions.
https://github.com/penguincabinet/fizzbuzz_google_cloud_functions
beginner faas fizzbuzz google-cloud
Last synced: 6 months ago
JSON representation
This is a FizzBuzz decision API that runs on Google Cloud Functions.
- Host: GitHub
- URL: https://github.com/penguincabinet/fizzbuzz_google_cloud_functions
- Owner: PenguinCabinet
- Created: 2022-10-20T04:49:19.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-10-20T05:12:41.000Z (over 3 years ago)
- Last Synced: 2025-03-26T00:44:49.691Z (12 months ago)
- Topics: beginner, faas, fizzbuzz, google-cloud
- Language: Python
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 👏FizzBuzz Google Cloud Functions
Google Cloud Functionsで動くFizzBuzz判定APIです。
## 🏗デプロイ
```bash
make deploy
```
## 🔨使い方
$(url)はデプロイ先のURLです。
```bash
>curl $(url)/CheckFizzBuzz?n=15
FizzBuzz
```
```bash
>curl $(url)/CheckFizzBuzz?n=6
6
```
```bash
>curl $(url)/CheckFizzBuzz?n=Hello
ERROR:n is not number
```
## 🎫LICENSE
[MIT](./LICENSE)
## ✍Author
[PenguinCabinet](https://github.com/PenguinCabinet)