This is a basic Hello World Encore application with a single API endpoint
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=hello-world# Run the app
encore runTo see that your app is running, you can ping the API.
curl http://localhost:4000/hello/WorldWhile encore run is running, open http://localhost:4000/ to view Encore's local developer dashboard.
Deploy your application to a staging environment in Encore's free development cloud.
git push encoreThen head over to https://app.encore.dev to find out your production URL, and off you go into the clouds!
encore test ./...
```# hellow