Untrack build output and local artifacts; gitignore them
Build and Push Docker Image / build (push) Successful in 28s

The image is built in CI (.gitea/workflows/docker-build.yml) from the
Dockerfile and pulled from registry.alwisp.com on Unraid. The Dockerfile
recompiles the client (vite build) inside the build and .dockerignore already
excludes these paths from the build context, so tracking them in git served no
purpose.

- Untrack client/dist (regenerated by the Docker build; logo + version stub
  sources live in client/public).
- Gitignore client/dist/, data/ (local SQLite volume), and *.tar.gz / *.zip
  (local `docker save` exports), alongside the already-ignored node_modules/.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Jason Stedwell
2026-07-10 17:13:07 -05:00
parent 7da4163d3b
commit 0c880c9598
6 changed files with 15 additions and 475 deletions
+15 -1
View File
@@ -1,4 +1,18 @@
.claude/
# Dependencies are installed fresh in the Docker build; never vendor them in git.
# The image is built in CI from the Dockerfile and pulled from the registry on
# Unraid. Everything below is either regenerated by that build (see .dockerignore)
# or a local-only artifact, so none of it belongs in git.
# Dependencies — installed fresh during the Docker build
node_modules/
# Client build output — recompiled inside the Docker build (client: vite build)
client/dist/
# Local runtime data (production SQLite DB lives on the /data volume)
data/
# Local image export artifacts (docker save | gzip)
*.tar.gz
*.zip
-1
View File
@@ -1 +0,0 @@
@media (max-width: 768px){*{-webkit-overflow-scrolling:touch}button,a,input,select{min-height:44px}input,select,textarea{font-size:16px!important}}@media (max-width: 1024px){.hide-tablet{display:none!important}}@media (max-width: 768px){.hide-mobile{display:none!important}.mobile-full-width{width:100%!important}.mobile-text-center{text-align:center!important}.mobile-no-padding{padding:0!important}.mobile-small-padding{padding:12px!important}.mobile-stack{flex-direction:column!important}.mobile-scroll-x{overflow-x:auto!important;-webkit-overflow-scrolling:touch}.mobile-card{display:block!important;padding:16px;margin-bottom:12px;border-radius:8px;background:#181924;border:1px solid #2a2b3a}.mobile-card-row{display:flex;justify-content:space-between;padding:8px 0;border-bottom:1px solid #1c1d29}.mobile-card-row:last-child{border-bottom:none}.mobile-card-label{font-weight:600;color:#9ca0b8;font-size:12px;text-transform:uppercase;letter-spacing:.5px}.mobile-card-value{font-weight:600;color:#f8f9fa;text-align:right}}@media (max-width: 480px){.hide-small-mobile{display:none!important}}@media (max-width: 768px){.mobile-sticky-top{position:sticky;top:0;z-index:100;background:#000}}
File diff suppressed because one or more lines are too long
-18
View File
@@ -1,18 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CPAS Violation Tracker</title>
<style>
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; height: 100%; }
#root { height: 100%; }
</style>
<script type="module" crossorigin src="/assets/index-DhWLw3RT.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-BoQf6yV_.css">
</head>
<body>
<div id="root"></div>
</body>
</html>
BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.1 KiB

-5
View File
@@ -1,5 +0,0 @@
{
"sha": "dev",
"shortSha": "dev",
"buildTime": null
}