Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kasyap1234/stripe-integration
https://github.com/kasyap1234/stripe-integration
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/kasyap1234/stripe-integration
- Owner: kasyap1234
- Created: 2024-11-13T10:46:29.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-14T11:10:14.000Z (2 months ago)
- Last Synced: 2024-11-20T17:16:59.531Z (2 months ago)
- Language: Go
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# REST API Starter
This is a RESTful API Starter with a single Hello World API endpoint.
## Developing locally
When you have [installed Encore](https://encore.dev/docs/install), you can create a new Encore application and clone this example with this command.
```bash
encore app create my-app-name --example=hello-world
```## Running locally
```bash
encore run
```While `encore run` is running, open [http://localhost:9400/](http://localhost:9400/) to view Encore's [local developer dashboard](https://encore.dev/docs/observability/dev-dash).
## Using the API
To see that your app is running, you can ping the API.
```bash
curl http://localhost:4000/hello/World
```## Deployment
Deploy your application to a staging environment in Encore's free development cloud:
```bash
git add -A .
git commit -m 'Commit message'
git push encore
```Then head over to the [Cloud Dashboard](https://app.encore.dev) 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
```bash
encore test ./...
```