Hey there! 👋
This is a guide to strings in Storyscript. Intended for all audiences from beginners to power users. On the left, in the table of contents, you can jump ahead if you understand the basics.
~15 minute read.
# Stripe webhooks | |
trigger, stripe | |
stripe | |
psql | |
# Google Cal Slack | |
cron | |
google cal | |
loop | |
create message |
Hey there! 👋
This is a guide to strings in Storyscript. Intended for all audiences from beginners to power users. On the left, in the table of contents, you can jump ahead if you understand the basics.
~15 minute read.
Make sure you don't miss this very important webhook or else your customers will remain on paid plans that they no longer pay for.
With Storyscript, we got it done in under 4 minutes and 4 lines of code.
(Updated) Sad the the tweet was deleted...because some of the answers were half a days work using terminal, git and containers.
This document is the game-plan for demoing Storyscript at GitHub Universe in November, 2019 at our Interactive Hangout center stage at the conference.
Asyncy is a CNCF & LF Member, 100% open source and on a mission to unite developers builing a strong community around transparency.
### | |
Accept user uploads and store them in AWS S3 | |
### | |
http-endpoint method:'post' url:'/upload' as request, response | |
uploadedFile = request.files['myImageName'] | |
if uploadedFile is null | |
response finish message:"No file uploaded." code:400 | |
end story |
git push asyncy master |
$ git push asyncy master | |
Counting objects: 488, done. | |
Compressing objects: 100% (367/367), done. | |
Writing objects: 100% (488/488), 231.85 KiB | 115.92 MiB/s, done. | |
Total 488 (delta 86), reused 488 (delta 86) | |
remote: Compressing source files... done. | |
remote: Building source: | |
remote: | |
remote: -----> Storyscript app detected | |
remote: -----> Creating deployment |
# Write your Stories in Storyscript and | |
# Asyncy will execute them by choreographing microservices. | |
# What is your email? | |
email = "" | |
you = fullcontact person --email email | |
if you.twitter | |
handler = python -c 'print("{{you.twitter}}".split("/")[-1])' |