Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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`.