Skip to content

Commit 0a0c75c

Browse files
committed
Minor app tweaks and cleanup
1 parent 331d210 commit 0a0c75c

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

app.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,14 @@ def console_printing_fcn(the_string: str) -> None:
1111
"""Simple function that prints a string.
1212
1313
Args:
14+
-----
1415
the_string (str): The string to print.
1516
1617
Returns:
18+
--------
1719
None: This function doesn't return anything, only prints to console.
1820
"""
1921
print(the_string)
20-
return None
2122

2223

2324
console_printing_fcn("Hello World")

docker-compose.debug.yml

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
version: '3.4'
22

33
services:
4-
projectoutline:
5-
image: projectoutline
4+
internalprojects:
5+
image: internalprojects
66
build:
77
context: .
88
dockerfile: ./Dockerfile
9-
command: ["sh", "-c", "pip install debugpy -t /tmp && python /tmp/debugpy --wait-for-client --listen 0.0.0.0:5678 app.py "]
9+
command:
10+
[
11+
"sh",
12+
"-c",
13+
"pip install debugpy -t /tmp && python /tmp/debugpy --wait-for-client --listen 0.0.0.0:5678 app.py "
14+
]
1015
ports:
1116
- 5678:5678

docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
version: '3.4'
22

33
services:
4-
projectoutline:
5-
image: projectoutline
4+
internalprojects:
5+
image: internalprojects
66
build:
77
context: .
88
dockerfile: ./Dockerfile

0 commit comments

Comments
 (0)