File tree Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change 37
37
git config user.name github-actions[bot]
38
38
git config user.email github-actions[bot]@users.noreply.github.com
39
39
echo "# ${{github.event.repository.name}} project :wave:" > README.md
40
+ echo "---" >> README.md
41
+ echo "## Usage" >> README.md
42
+ echo "```bash" >> README.md
43
+ echo "git clone [email protected] :${{github.event.repository.name}}.git" >> README.md
44
+ echo "cd ${{github.event.repository.name}}" >> README.md
45
+ echo "```" >> README.md
46
+ echo "---" >> README.md
47
+ echo "## build the project" >> README.md
48
+ echo "```bash" >> README.md
49
+ echo "make build" >> README.md
50
+ echo "```" >> README.md
40
51
git add README.md
41
52
git commit -m "Changed README.md"
42
53
git push
Original file line number Diff line number Diff line change 8
8
@uv pip compile -o requirements.txt requirements.in
9
9
@uv pip install -r requirements.txt
10
10
11
+ build :
12
+ @echo " Building the server..."
13
+ @docker compose build
14
+
15
+ up :
16
+ @echo " Starting the server..."
17
+ @docker compose up -d
18
+
19
+ stop :
20
+ @echo " Stopping the server..."
21
+ @docker compose stop
22
+
23
+ down :
24
+ @echo " Stopping and removing the server..."
25
+ @docker compose down --remove-orphans --volumes
26
+
11
27
ruff :
12
28
# Run ruff checks
13
29
ruff check --fix
You can’t perform that action at this time.
0 commit comments