Skip to content

Latest commit

 

History

History
 
 

simple-event-driven

Simple Event-Driven Application

This is a simple starter (three services) with an event-driven architecture. It utilizes:

  • APIs
  • Database
  • Pub/Sub
  • Secrets

Architecture

YouTube video describing this example: here.

Developing locally

When you have installed Encore, you can create a new Encore application and clone this example with this command.

encore app create my-app-name --example=ts/simple-event-driven

Running locally

encore run

To use the SendGrid integration, set the SendGrid API key:

encore secret set SendGridAPIKey

While encore run is running, open http://localhost:9400/ to view Encore's local developer dashboard.

Using the API

To see that your app is running, you can ping the API.

curl http://localhost:4000/hello/World

Deployment

Deploy your application to a staging environment in Encore's free development cloud:

git add -A .
git commit -m 'Commit message'
git push encore

Then head over to the Cloud Dashboard to monitor your deployment and find your production URL.

From there you can also connect your own AWS or GCP account to use for deployment.

Now off you go into the clouds!

Testing

encore test