Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/carlohcs/basic-app
A basic app containing a Hello World message that you can deploy.
https://github.com/carlohcs/basic-app
aws basic basic-app basic-app-production docker kubernetes
Last synced: 15 days ago
JSON representation
A basic app containing a Hello World message that you can deploy.
- Host: GitHub
- URL: https://github.com/carlohcs/basic-app
- Owner: carlohcs
- Created: 2024-08-30T13:04:39.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-09-10T04:24:46.000Z (2 months ago)
- Last Synced: 2024-10-10T16:02:16.885Z (about 1 month ago)
- Topics: aws, basic, basic-app, basic-app-production, docker, kubernetes
- Language: HCL
- Homepage:
- Size: 65.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Basic App
A simple basic app where we can run without too much issues.
It contains Docker, Kubernetes and AWS ECS examples to run.## Docker
Build the image:
```bash
docker build . -t carlohcs/basic-app:latest
```Run the image:
```bash
docker run -p 3000:3000 carlohcs/basic-app:latest
```Access in the browser at `http://localhost:3000`.
## Kubernetes
To run the Kubernetes application:
For dev:
```bash
kubectl apply -f k8s/dev
```For prod:
```bash
kubectl apply -f k8s/prod
```Access in the browser at `http://localhost:30001`.