-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate-template.sh
More file actions
executable file
·57 lines (35 loc) · 1.33 KB
/
create-template.sh
File metadata and controls
executable file
·57 lines (35 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/bin/bash
# Creates a template folder for a new comic project.
# Usage: ./create-template.sh [folder-name]
set -e
FOLDER="${1:-my-comic}"
if [ -d "$FOLDER" ]; then
echo "Error: '$FOLDER' already exists."
exit 1
fi
mkdir -p "$FOLDER/inspiration" "$FOLDER/assets"
cat > "$FOLDER/ideas.md" << 'EOF'
# My Comic
Tell us what you want the comic to be about.
Be as specific or as vague as you want — the more you leave open,
the more creative freedom the pipeline has.
## What's the story about?
<!-- What themes, ideas, or feelings should the comic explore?
Who is the audience? What tone do you want? -->
## Characters
<!-- Any character ideas? A species, a name, a personality trait?
Or leave blank and let the pipeline surprise you. -->
## Style
<!-- Art style preferences? Drop reference images in the inspiration/ folder.
Think: warm, whimsical, hand-drawn? Dark and moody? Bright and playful? -->
## Anything else?
<!-- Supporting characters? Specific scenes? Things to avoid?
A logo in assets/ for watermarking? Go wild. -->
EOF
echo "Created template at ./$FOLDER/"
echo ""
echo "Next steps:"
echo " 1. Edit $FOLDER/ideas.md with your creative brief"
echo " 2. Drop style reference images in $FOLDER/inspiration/"
echo " 3. (Optional) Add a logo.png to $FOLDER/assets/"
echo " 4. Run: ./make-comic.sh $FOLDER"