29 lines
591 B
Plaintext
29 lines
591 B
Plaintext
# .gitignore
|
|
quartz/
|
|
|
|
# Node
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Build output
|
|
public/
|
|
|
|
# Script generated/temporary files
|
|
content/ # If the script creates it and doesn't always clean it up
|
|
.last_build_content_timestamp
|
|
cron_quartz_update.log
|
|
update_quartz_docker.log
|
|
update_quartz_docker.log # Or whatever your script log file is named
|
|
compose_down_output.tmp # If you kept temporary files for compose output
|
|
compose_up_output.tmp # If you kept temporary files for compose output
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Editor/IDE specific
|
|
.vscode/
|
|
.idea/
|