Forecastle
Forecastle is a control panel which dynamically discovers and provides a launchpad to access applications deployed on Kubernetes – [✩Star] if you're using it!
파일 탐색기
최종 버전 다운로드 (.zip)- bug_report.md
- feature_request.md
- e2e-tests.yaml
- pull_request.yaml
- push-pr-image.yaml
- push.yaml
- release-helm.yaml
- release.yaml
- run-tests-on-pr.yaml
- forecastle-round-100px.png
- forecastle.png
- main.go
- pprof.go
- forecastleApp.yaml
- _helpers.tpl
- configmap.yaml
- deployment.yaml
- httproute.yaml
- ingress.yaml
- networkPolicyEgress.yaml
- networkPolicyIngress.yaml
- podDisruptionBudget.yaml
- rbac.yaml
- route.yaml
- service.yaml
- deployment_test.yaml
- ingress_test.yaml
- nameOverride_test.yaml
- namespace_test.yaml
- .gitignore
- Chart.yaml
- values.yaml
- Chart.yaml.tmpl
- values.yaml.tmpl
- forecastleapp.yaml
- E2E_TESTS.md
- e2e_test.go
- helpers.go
- app.spec.ts
- favicon.ico
- index.html
- logo192.png
- logo512.png
- manifest.json
- robots.txt
- AppBadge.js
- index.js
- AppCard.js
- index.js
- AppGroup.js
- index.js
- AppIcon.js
- index.js
- AppListItem.js
- index.js
- index.js
- index.js
- PageLoader.js
- index.js
- Spinner.js
- EmptyState.js
- ErrorState.js
- index.js
- Footer.js
- index.js
- Header.js
- HeaderControls.js
- HeaderSearch.js
- index.js
- LastSyncedIndicator.js
- index.js
- AppGridView.js
- AppListView.js
- index.js
- index.js
- index.js
- App.js
- AppList.js
- index.js
- useLocalStorage.js
- appsModule.js
- appsSelector.js
- configModule.js
- filtersModule.js
- uiSlice.js
- index.js
- api.js
- index.js
- palette.js
- transitions.js
- typography.js
- utils.js
- index.css
- index.js
- jsconfig.json
- serviceWorker.js
- .gitignore
- package.json
- playwright.config.ts
- yarn.lock
- .gitkeep
- embed.go
- handler.go
- handler_test.go
- middleware.go
- middleware_test.go
- server.go
- server_test.go
- annotations.go
- doc.go
- forecastleapp_types.go
- register.go
- zz_generated.deepcopy.go
- clientset_generated.go
- doc.go
- register.go
- doc.go
- register.go
- doc.go
- fake_forecastle_client.go
- fake_forecastleapp.go
- doc.go
- forecastle_client.go
- forecastleapp.go
- generated_expansion.go
- clientset.go
- doc.go
- forecastleapp.go
- interface.go
- interface.go
- factory_interfaces.go
- factory.go
- generic.go
- expansion_generated.go
- forecastleapp.go
- config.go
- crdapps.go
- crdapps_test.go
- url.go
- url_test.go
- customapps.go
- customapps_test.go
- filters.go
- filters_test.go
- apps.go
- apps_test.go
- apps.go
- apps_test.go
- discoverysource.go
- forecastle.go
- forecastleapps.go
- httproutes.go
- httproutes_test.go
- ingresses.go
- ingresses_test.go
- labelselector.go
- namespaces.go
- httproute.go
- httproute_test.go
- ingress.go
- ingress_test.go
- ingressroute.go
- map.go
- route.go
- client.go
- discovery.go
- log.go
- kube.go
- strings.go
- .dockerignore
- .gitattributes
- .gitignore
- .goreleaser.yml
- Dockerfile
- go.mod
- go.sum
- LICENSE
- Makefile
- README.md
- renovate.json
# 설치 가이드
1. 코드 내려받기
git clone https://github.com/stakater/Forecastle
깃허브에서 프로젝트 코드 전체를 내 컴퓨터로 내려받습니다.
cd Forecastle
방금 내려받은 프로젝트 폴더 안으로 이동합니다.
2. Docker
쉬움 추천사전 준비물
- Git GitHub에서 프로젝트 코드를 내려받으려면 필요합니다.
- Docker Desktop 컨테이너를 빌드하고 실행하려면 필요합니다. 설치 후 실행해서 백그라운드에 켜두세요.
docker build -t forecastle .
Dockerfile을 기반으로 실행 가능한 이미지를 빌드합니다.
docker run -p 3000:3000 -v $(pwd)/config.yaml:/etc/forecastle/config.yaml forecastle
빌드된 이미지를 실제 컨테이너로 실행합니다.
터미널에 docker compose ps 를 입력해 컨테이너들이 Up 상태인지 확인하세요. README에 포트 번호가 적혀있다면 브라우저에서 http://localhost:포트번호 로 접속해보세요.
이 레포의 README에 적힌 실제 명령어를 그대로 가져왔습니다.
3. Node.js
쉬움사전 준비물
yarn install
package.json에 명시된 라이브러리들을 내려받아 설치합니다.
yarn start # Starts dev server on port 3001
개발/실행 서버를 켭니다.
cd frontend && yarn build && cd ..
방금 내려받은 프로젝트 폴더 안으로 이동합니다.
명령어 실행 후 터미널에 나타나는 주소(보통 http://localhost:3000 형태)를 브라우저에서 열어보세요.
이 레포의 README에 적힌 실제 명령어를 그대로 가져왔습니다.
4. Go
보통go build -o forecastle ./cmd/forecastle
Go 프로그램을 컴파일해 실행 파일을 만듭니다.
빌드가 에러 없이 끝나면 성공입니다. go run . 을 썼다면 터미널 출력을 확인하세요.
이 레포의 README에 적힌 실제 명령어를 그대로 가져왔습니다.
5. Make
보통사전 준비물
- Git GitHub에서 프로젝트 코드를 내려받으려면 필요합니다.
- Make Linux/macOS는 보통 기본 설치되어 있습니다. Windows는 별도 설치(예: MSYS2, WSL)가 필요합니다.
make
생성된 빌드 설정을 바탕으로 실제 컴파일을 진행해 실행 파일을 만듭니다.
에러 없이 끝나면 성공입니다. 생성된 실행 파일을 직접 실행해보세요.
// repository documentation
Was this content helpful?
(0 ratings)
