add hidden files
All checks were successful
Deploy valere.dev / deploy (push) Successful in 2m23s

This commit is contained in:
valere
2025-09-11 17:38:07 +02:00
parent 8213752385
commit 7535302217
3 changed files with 46 additions and 0 deletions

21
.github/workflows/deploy.yml vendored Normal file
View File

@@ -0,0 +1,21 @@
name: Deploy valere.dev
on: [push]
jobs:
deploy:
runs-on: ubuntu-22.04
container:
volumes:
- /var/docker-web:/var/docker-web
steps:
- uses: actions/checkout@v4
- name: install
run: |
APP_DIR=/var/docker-web/apps/${GITHUB_REPOSITORY##*/}
mkdir -p $APP_DIR
cp -a $(find . -mindepth 1 -maxdepth 1 ! -name '.git' ! -name 'node_modules') "$APP_DIR/"
- name: up
run: |
export COMPOSE_BAKE=false
bash /var/docker-web/src/cli.sh up ${GITHUB_REPOSITORY##*/}

24
.gitignore vendored Normal file
View File

@@ -0,0 +1,24 @@
# Nuxt dev/build outputs
.output
.data
.nuxt
.nitro
.cache
dist
# Node dependencies
node_modules
# Logs
logs
*.log
# Misc
.DS_Store
.fleet
.idea
# Local env files
.env
.env.*
!.env.example

1
.nvmrc Normal file
View File

@@ -0,0 +1 @@
20