mirror of
https://github.com/sortedcord/omnia.git
synced 2026-07-24 13:02:49 +05:30
ci: Minor dev build fixes
This commit is contained in:
65
.rsyncignore
Normal file
65
.rsyncignore
Normal file
@@ -0,0 +1,65 @@
|
||||
# Git metadata
|
||||
.git/
|
||||
.gitignore
|
||||
.gitattributes
|
||||
|
||||
# Dependencies and package managers
|
||||
node_modules/
|
||||
.pnpm-store/
|
||||
.pnp
|
||||
.pnp.*
|
||||
.yarn/
|
||||
.yarn-cache/
|
||||
|
||||
# Build and generated output
|
||||
dist/
|
||||
dist-ssr/
|
||||
build/
|
||||
coverage/
|
||||
.next/
|
||||
.astro/
|
||||
out/
|
||||
*.tsbuildinfo
|
||||
.turbo/
|
||||
.cache/
|
||||
|
||||
# Logs and temporary files
|
||||
*.log
|
||||
logs/
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
pnpm-debug.log*
|
||||
.pnpm-debug.log*
|
||||
lerna-debug.log*
|
||||
*.swp
|
||||
*.swo
|
||||
*.swn
|
||||
*.tmp
|
||||
*.temp
|
||||
|
||||
# Environment and local config
|
||||
.env
|
||||
.env*
|
||||
*.local
|
||||
|
||||
# OS/editor files
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
.idea/
|
||||
.vscode/
|
||||
*.suo
|
||||
*.sln
|
||||
*.ntvs*
|
||||
*.njsproj
|
||||
|
||||
# Databases and local data
|
||||
*.db
|
||||
*.sqlite
|
||||
*.sqlite3
|
||||
*.db-journal
|
||||
*.db-wal
|
||||
*.db-shm
|
||||
omnia.db
|
||||
|
||||
# Local notes and generated artifacts
|
||||
__local_notes/
|
||||
@@ -15,4 +15,4 @@ RUN apt-get update -qq && \
|
||||
EXPOSE 3000
|
||||
|
||||
# We run a shell command or script to handle mounting sync + pnpm install fallback
|
||||
CMD ["pnpm", "--filter", "@omnia/gui", "dev", "--turbopack"]
|
||||
CMD ["sh", "-c", "pnpm install && pnpm build && pnpm --filter @omnia/gui dev --turbopack"]
|
||||
@@ -3,6 +3,7 @@ services:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: apps/gui/Dockerfile.dev
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "3000:3000"
|
||||
environment:
|
||||
|
||||
Reference in New Issue
Block a user