Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/meteatamel/appengine-flex-dotnetcore
.NET Core on App Engine flexible environment
https://github.com/meteatamel/appengine-flex-dotnetcore
Last synced: 2 days ago
JSON representation
.NET Core on App Engine flexible environment
- Host: GitHub
- URL: https://github.com/meteatamel/appengine-flex-dotnetcore
- Owner: meteatamel
- License: apache-2.0
- Created: 2020-06-29T11:37:57.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-06-29T11:41:31.000Z (over 4 years ago)
- Last Synced: 2024-12-19T16:59:05.856Z (15 days ago)
- Language: C#
- Size: 9.77 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# .NET Core on Google App Engine flexible environment
## Run locally
Build:
```sh
dotnet build
```Run:
```sh
dotnet run
```Open in your browser at `http://localhost:8080`
## Deploy to App Engine flexible environment
The [App Engine flexible environment](https://cloud.google.com/appengine/docs/flexible/dotnet) is based on Google Compute Engine and automatically scales your app up and down while balancing the load.
Publish:
```sh
dotnet publish -c Release
```Deploy:
```sh
gcloud app deploy bin/Release/netcoreapp3.1/publish/app.yaml
```View:
```sh
gcloud app browse
```