https://github.com/arumie/ai-testimonials
.NET project using OpenAI to generate fake testimonials
https://github.com/arumie/ai-testimonials
docker dotnet gcp githubactions openai
Last synced: 2 months ago
JSON representation
.NET project using OpenAI to generate fake testimonials
- Host: GitHub
- URL: https://github.com/arumie/ai-testimonials
- Owner: arumie
- Created: 2024-02-26T21:07:50.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-05T19:29:22.000Z (over 2 years ago)
- Last Synced: 2025-05-15T06:08:37.804Z (about 1 year ago)
- Topics: docker, dotnet, gcp, githubactions, openai
- Language: C#
- Homepage:
- Size: 2.8 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Docker.md
Awesome Lists containing this project
README
### Building and running your application
When you're ready, start your application by running:
`docker compose up --build`.
Your application will be available at http://localhost:8080.
### Deploying your application to the cloud
First, build your image, e.g.: `docker build -t myapp .`.
If your cloud uses a different CPU architecture than your development
machine (e.g., you are on a Mac M1 and your cloud provider is amd64),
you'll want to build the image for that platform, e.g.:
`docker build --platform=linux/amd64 -t myapp .`.
Then, push it to your registry, e.g. `docker push myregistry.com/myapp`.
Consult Docker's [getting started](https://docs.docker.com/get-started/04_sharing_app/)
docs for more detail on building and pushing.
### References
* [Docker's .NET guide](https://docs.docker.com/language/dotnet/)
* The [dotnet-docker](https://github.com/dotnet/dotnet-docker/tree/main/samples)
repository has many relevant samples and docs.