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.

.dockerignoreBlame46 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# Tests
23src/__tests__
24**/*.test.ts
25**/*.spec.ts
26
821ea47Claude27# Local tooling config (linters/formatters — not needed at runtime)
e883329Claude28.editorconfig
29.eslintrc*
30.prettierrc*
31biome.json
32
33# Docker files themselves
34Dockerfile
35.dockerignore
36
37# OS / editor artifacts
38.DS_Store
39Thumbs.db
40.idea
41.vscode
42*.swp
43*.swo
821ea47Claude44
45# Claude / agent tooling (internal)
46.claude