mirror of
https://github.com/dockersrc/rust
synced 2026-06-24 20:01:06 -04:00
🔧 Update configuration files 🔧
Dockerfile .env.scripts .gitattributes .gitea/workflows/docker.yaml .gitignore rootfs/etc/profile.d/rust.sh rootfs/root/docker/setup/00-init.sh rootfs/root/docker/setup/01-system.sh rootfs/root/docker/setup/02-packages.sh rootfs/root/docker/setup/03-files.sh rootfs/root/docker/setup/04-users.sh rootfs/root/docker/setup/05-custom.sh rootfs/root/docker/setup/06-post.sh rootfs/root/docker/setup/07-cleanup.sh rootfs/usr/local/bin/copy rootfs/usr/local/bin/entrypoint.sh rootfs/usr/local/bin/healthcheck rootfs/usr/local/bin/symlink rootfs/usr/local/etc/docker/init.d/00-rust.sh rootfs/usr/local/share/cargo/config.toml rootfs/usr/local/share/template-files/config/env/default.sample rootfs/usr/local/share/template-files/config/env/examples/zz-entrypoint.sh
This commit is contained in:
+174
@@ -102,3 +102,177 @@ $RECYCLE.BIN/
|
||||
**/*.rewrite.sh
|
||||
**/*.refactor.sh
|
||||
|
||||
|
||||
# Backup files left by editors
|
||||
|
||||
# Temporary files left when a process holds an open handle to a deleted file
|
||||
|
||||
|
||||
|
||||
# NFS stale file handles
|
||||
|
||||
.DS_Store
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# Crash dump files
|
||||
|
||||
# Core dumps (Linux/macOS)
|
||||
core
|
||||
core.*
|
||||
vgcore.*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Editors ###
|
||||
# Visual Studio Code
|
||||
.vscode/
|
||||
!.vscode/extensions.json
|
||||
|
||||
# JetBrains IDEs (IntelliJ, GoLand, RustRover, PyCharm, etc.)
|
||||
.idea/
|
||||
*.iml
|
||||
*.iws
|
||||
*.ipr
|
||||
|
||||
# Vim / Neovim
|
||||
*.swp
|
||||
*.swo
|
||||
.netrwhist
|
||||
Session.vim
|
||||
.vim/
|
||||
|
||||
# Sublime Text
|
||||
*.sublime-workspace
|
||||
*.sublime-project
|
||||
|
||||
# Eclipse / generic Java IDEs
|
||||
.project
|
||||
.classpath
|
||||
.factorypath
|
||||
.settings/
|
||||
|
||||
### AI tool local configs (personal settings, never commit) ###
|
||||
# Claude Code
|
||||
.claude/settings.local.json
|
||||
.claude/*.lock
|
||||
|
||||
# Cursor
|
||||
.cursor/
|
||||
.cursorignore
|
||||
.cursorindexingignore
|
||||
|
||||
# GitHub Copilot
|
||||
.copilot/
|
||||
|
||||
# Codeium
|
||||
.codeium/
|
||||
|
||||
# Tabnine
|
||||
.tabnine/
|
||||
|
||||
# Aider
|
||||
.aider/
|
||||
.aider.conf.yml
|
||||
.aider.model.settings.yml
|
||||
.aiderignore
|
||||
|
||||
# General AI assistant local state
|
||||
.ai/
|
||||
.ai.local/
|
||||
|
||||
### Environment and secrets ###
|
||||
# Local env overrides — never commit credentials
|
||||
.env
|
||||
.env.local
|
||||
.env.*.local
|
||||
|
||||
# Private keys and certificates
|
||||
*.pem
|
||||
*.key
|
||||
*.p12
|
||||
*.pfx
|
||||
|
||||
### Build artifacts ###
|
||||
build/
|
||||
dist/
|
||||
out/
|
||||
|
||||
# Rust
|
||||
target/
|
||||
|
||||
# C / C++ / compiled objects
|
||||
*.o
|
||||
*.a
|
||||
*.so
|
||||
*.dylib
|
||||
*.dll
|
||||
*.exe
|
||||
|
||||
### Dependency directories ###
|
||||
# Node
|
||||
node_modules/
|
||||
|
||||
# Go (vendored deps are sometimes committed intentionally, so gitignore only the cache)
|
||||
# vendor/
|
||||
|
||||
# Python
|
||||
__pycache__/
|
||||
*.pyc
|
||||
*.pyo
|
||||
*.pyd
|
||||
.Python
|
||||
*.egg-info/
|
||||
.eggs/
|
||||
.venv/
|
||||
venv/
|
||||
env/
|
||||
|
||||
### Logs ###
|
||||
*.log
|
||||
logs/
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
### Temporary and cache ###
|
||||
tmp/
|
||||
.tmp/
|
||||
*.tmp
|
||||
*.cache
|
||||
.cache/
|
||||
|
||||
### Test and coverage ###
|
||||
coverage/
|
||||
.coverage
|
||||
*.cover
|
||||
*.coverprofile
|
||||
htmlcov/
|
||||
.nyc_output/
|
||||
.pytest_cache/
|
||||
.tox/
|
||||
|
||||
### Misc — always allow ###
|
||||
|
||||
### Project-specific patterns ###
|
||||
# ignore commit message files
|
||||
|
||||
# ignore backup files
|
||||
|
||||
|
||||
|
||||
# ignore .installed marker files
|
||||
|
||||
# ignore work-in-progress rewrite/refactor scripts
|
||||
|
||||
# ignore local override scripts and configs
|
||||
**/*.local.sh
|
||||
**/*.local.conf
|
||||
**/*.local.yaml
|
||||
**/*.local.yml
|
||||
|
||||
|
||||
Reference in New Issue
Block a user