Skip to content

Commit

Permalink
feat: Add and delete nodes from existing cluster
Browse files Browse the repository at this point in the history
  • Loading branch information
dsieradzki committed Apr 23, 2023
1 parent 6e21bea commit e005bda
Show file tree
Hide file tree
Showing 47 changed files with 1,748 additions and 1,276 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/pull_request.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Pull request

on:
pull_request:

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
token: ${{ secrets.ACCESS_TOKEN }}

- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build
uses: docker/build-push-action@v4
with:
context: .
file: ./Dockerfile
push: false
14 changes: 7 additions & 7 deletions makoon/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,21 @@ version = "0.1.0"
edition = "2021"

[dependencies]
tokio = "1.25.0"
actix-web = "4.3.0"
tokio = "1.27.0"
actix-web = "4.3.1"
actix-session = { version = "0.7.2", features = ["cookie-session"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
proxmox = { path = "../proxmox" }
rust-embed = "6.4.2"
rust-embed = "6.6.1"
mime_guess = "2.0.4"
typeshare = "1.0.1"
chrono = { version = "0.4", features = ["serde"] }
log = "0.4.17"
env_logger = "0.9.3"
openssl = "0.10.47"
pem = "2.0.0"
env_logger = "0.10.0"
openssl = "0.10.50"
pem = "2.0.1"
ssh-keys = "0.1.4"
ssh2 = "0.9.4"
rayon = "1.7.0"
uuid = { version = "1.3.0", features = ["v4", "fast-rng"] }
uuid = { version = "1.3.1", features = ["v4", "fast-rng"] }
24 changes: 12 additions & 12 deletions makoon/src-web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,30 +10,30 @@
},
"dependencies": {
"@heroicons/react": "^2.0.17",
"@monaco-editor/react": "^4.4.6",
"axios": "^1.3.5",
"@monaco-editor/react": "^4.5.0",
"axios": "^1.3.6",
"formik": "^2.2.9",
"mobx": "^6.9.0",
"mobx-react-lite": "^3.4.3",
"monaco-editor": "^0.37.1",
"primeicons": "^6.0.1",
"primereact": "^9.2.2",
"primereact": "^9.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.10.0",
"yup": "^1.0.2"
"yup": "^1.1.1"
},
"devDependencies": {
"@types/node": "^18.15.11",
"@types/react": "^18.0.33",
"@types/node": "^18.15.12",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^3.1.0",
"@vitejs/plugin-react": "^4.0.0",
"autoprefixer": "^10.4.14",
"npm-check-updates": "^16.10.7",
"postcss": "^8.4.21",
"sass": "^1.60.0",
"npm-check-updates": "^16.10.8",
"postcss": "^8.4.23",
"sass": "^1.62.0",
"tailwindcss": "^3.3.1",
"typescript": "^5.0.3",
"vite": "^4.2.1"
"typescript": "^5.0.4",
"vite": "^4.3.1"
}
}
Loading

0 comments on commit e005bda

Please sign in to comment.