One line description of the project.
What kind of documentation does the project have and where it is located
What prerequisites do you need to have to run this project locally? (Which version of Golang, Node, PHP etc)
// Army Painter / Vallejo 24-bottle stepped organizer | |
// Rectangular base with N stepped tiers, M holes per tier | |
// Footprint auto-calculated from rows, cols, and step settings | |
// ---------------------- | |
// Parameters (tweakable) | |
// ---------------------- | |
rows = 4; // number of stepped tiers | |
cols = 6; // number of bottle holes per row | |
step_height = 20; // height of each step (Z increment per row) |
#!/bin/bash | |
# Check if a target folder is provided | |
if [ $# -ne 1 ]; then | |
echo "Usage: $0 <target_folder>" | |
exit 1 | |
fi | |
target_folder="$1" |