Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/soulshake/kuberpoets
https://github.com/soulshake/kuberpoets
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/soulshake/kuberpoets
- Owner: soulshake
- License: apache-2.0
- Created: 2022-08-26T10:52:55.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-08T18:04:11.000Z (about 2 years ago)
- Last Synced: 2024-12-23T13:53:51.629Z (5 days ago)
- Language: TypeScript
- Size: 356 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Kuberpoets
## Running locally
In all cases below, the site will be available at: http://localhost:3000
#### In Tilt
We assume you have a local Kubernetes cluster set up with a corresponding active Kube context.
From the repo root, run:
```
tilt up
```#### In Docker Compose
From the repo root, run:
```
docker-compose up
```Note that live-reloading is better supported in Tilt than Compose.
### Frontend
#### Natively
From the `frontend/` directory, run:
```
npm ci
npm run start
```Browse to http://localhost:3000.
#### In Docker
From the `frontend/` directory, run:
```
docker build -t kuberpoets .
docker run -ti -p 3000:80 kuberpoets
```