Skip to content

Commit

Permalink
move to salvo :)
Browse files Browse the repository at this point in the history
  • Loading branch information
wildonion committed Jun 22, 2024
1 parent 785a497 commit 45dce94
Show file tree
Hide file tree
Showing 105 changed files with 4,280 additions and 3,950 deletions.
Empty file modified .Dockerignore
100755 → 100644
Empty file.
Empty file modified .env
100755 → 100644
Empty file.
6 changes: 3 additions & 3 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
branches: [main]

jobs:
build-and-push:
build-and-push-to-registry:
runs-on: ubuntu-latest
services: # use docker services for building and pushing compose file inside the repo
docker:
Expand All @@ -21,9 +21,9 @@ jobs:
run: | # 1 - build services | 2 - push services to the custom registry hosted on docker.youwho.club
sudo docker compose -f "docker-compose.yml" build
sudo docker compose -f "docker-compose.yml" push
pull-on-server:
pull-from-registry-on-server:
runs-on: ubuntu-latest
needs: build-and-push
needs: build-and-push-to-registry
steps:
- name: Deploy to server
uses: appleboy/ssh-action@master # use this is an action to login into the ssh
Expand Down
Empty file modified .gitignore
100755 → 100644
Empty file.
35 changes: 10 additions & 25 deletions .vscode/settings.json
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,37 +1,22 @@
{
"workbench.colorCustomizations": {
"checkbox.background": "#19241b",
"checkbox.foreground": "#19241b",
"checkbox.border": "#288bb3",
"input.background": "#1b2601",
"input.border": "#288bb3",
"scrollbar.shadow": "#288bb3",
"scrollbar.background": "#19241b",
"scrollbarSlider.activeBackground": "#288bb3",
"scrollbarSlider.background": "#19241b",
"scrollbarSlider.hoverBackground": "#288bb3",
"activityBar.activeBackground": "#e5c268",
"activityBar.background": "#e5c268",
"activityBar.activeBackground": "#63ba93",
"activityBar.background": "#63ba93",
"activityBar.foreground": "#15202b",
"activityBar.inactiveForeground": "#15202b99",
"activityBarBadge.background": "#178868",
"activityBarBadge.background": "#854eb1",
"activityBarBadge.foreground": "#e7e7e7",
"commandCenter.border": "#15202b99",
"sash.hoverBorder": "#e5c268",
"statusBar.background": "#ddb03d",
"sash.hoverBorder": "#63ba93",
"statusBar.background": "#48a27a",
"statusBar.foreground": "#15202b",
"statusBarItem.hoverBackground": "#c59722",
"statusBarItem.remoteBackground": "#ddb03d",
"statusBarItem.hoverBackground": "#387f5f",
"statusBarItem.remoteBackground": "#48a27a",
"statusBarItem.remoteForeground": "#15202b",
"titleBar.activeBackground": "#ddb03d",
"titleBar.activeBackground": "#48a27a",
"titleBar.activeForeground": "#15202b",
"titleBar.inactiveBackground": "#ddb03d99",
"titleBar.inactiveBackground": "#48a27a99",
"titleBar.inactiveForeground": "#15202b99"
},
"rust-analyzer.linkedProjects": [
"./Cargo.toml"
],
"rust-analyzer.showUnlinkedFileNotification": false,
"rust-analyzer.checkOnSave": true,
"peacock.color": "#ddb03d"
"peacock.color": "#48a27a"
}
Loading

0 comments on commit 45dce94

Please sign in to comment.