deploying

This commit is contained in:
fatmeat 2025-05-22 22:04:29 +02:00
parent 0f212b6ff5
commit 0c9882dd60
2 changed files with 10 additions and 0 deletions

View File

@ -10,6 +10,8 @@ server:
deploy: deploy:
@echo "📤 Pushing production to gitea..." @echo "📤 Pushing production to gitea..."
git add .
git commit -m "deploying"
git push origin production git push origin production
ssh $(VPS_USER)@$(VPS_HOST) -p $(SSH_PORT) "cd $(VPS_PATH) && git checkout production && git pull origin production" ssh $(VPS_USER)@$(VPS_HOST) -p $(SSH_PORT) "cd $(VPS_PATH) && git checkout production && git pull origin production"
@echo "✅ Deployment done!" @echo "✅ Deployment done!"

View File

@ -131,6 +131,14 @@ ul {
list-style: none; list-style: none;
} }
ul .repo-list {
display: flex;
flex-wrap: nowrap;
gap: 1em;
flex-flow: row;
list-style: none;
}
footer a { footer a {
text-decoration: none; text-decoration: none;
color: var(--primary-color); color: var(--primary-color);