docker extend build bash script working

This commit is contained in:
2024-07-21 17:52:33 -07:00
parent 0c4bb4a289
commit 2bd83096a8
33 changed files with 547 additions and 189 deletions
+22
View File
@@ -0,0 +1,22 @@
#!/bin/bash
# Function to create a .gitignore file with standard ignores
create_gitignore() {
local project_path="$1"
local gitignore_path="$project_path/.gitignore"
# Create the .gitignore file
cat <<EOL > "$gitignore_path"
data/
logs/
*.log
.vscode/
.idea/
*.suo
*.ntvs*
*.njsproj
*.sln
.DS_Store
Thumbs.db
EOL
}