Pre-launch — Gluecron is in final validation. Public signups and git hosting for non-owner users open after launch review.
CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
Blame · Line-by-line history

.dockerignore

Each line is annotated with the commit that last touched it. Click any SHA to jump to that commit and see the surrounding change.

.dockerignoreBlame49 lines · 1 contributor
e883329Claude1# Version control
2.git
3.gitignore
4.gitattributes
5
6# Dependencies (reinstalled in Docker)
7node_modules
8
9# Bare git repositories (runtime data, not source)
10repos
11
12# Environment / secrets
13.env
14.env.*
15!.env.example
16
17# Build / generated output
18dist
19build
20*.js.map
21
22# Documentation
23*.md
24LICENSE
25
26# Tests
27src/__tests__
28**/*.test.ts
29**/*.spec.ts
30
31# Local tooling config
32drizzle.config.ts
33tsconfig.json
34.editorconfig
35.eslintrc*
36.prettierrc*
37biome.json
38
39# Docker files themselves
40Dockerfile
41.dockerignore
42
43# OS / editor artifacts
44.DS_Store
45Thumbs.db
46.idea
47.vscode
48*.swp
49*.swo