Skip to content

Commit

Permalink
Fix newlines in EOF
Browse files Browse the repository at this point in the history
  • Loading branch information
NadavTasher committed Nov 3, 2024
1 parent 71f675b commit a020187
Show file tree
Hide file tree
Showing 20 changed files with 30 additions and 30 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
__pycache__

# Dockerfile caches
image/Dockerfile-*
image/Dockerfile-*
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -198,4 +198,4 @@ test-independent-makefile: independent

.PHONY: clean
clean:
$(RM) -r $(VENV_PATH)
$(RM) -r $(VENV_PATH)
2 changes: 1 addition & 1 deletion bundles/buildless/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ develop:

.PHONY: clean
clean:
@docker compose down --volumes --remove-orphans
@docker compose down --volumes --remove-orphans
2 changes: 1 addition & 1 deletion bundles/buildless/src/frontend/application/application.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
body {
max-width: 500px;
max-width: 800px;
}
2 changes: 1 addition & 1 deletion bundles/buildless/src/frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@
<body class="column">
<!--App Layout-->
</body>
</html>
</html>
12 changes: 6 additions & 6 deletions bundles/headless/empty-page.html

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions bundles/headless/example-page.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bundles/independent/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ develop: image

.PHONY: clean
clean:
@docker compose down --volumes --remove-orphans
@docker compose down --volumes --remove-orphans
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
body {
max-width: 500px;
max-width: 800px;
}
2 changes: 1 addition & 1 deletion bundles/independent/application/src/frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@
<body class="column">
<!--App Layout-->
</body>
</html>
</html>
2 changes: 1 addition & 1 deletion image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ WORKDIR /application/backend
CMD [ "python", "/application/entrypoint.py" ]

# Create the certificate and the key
RUN openssl req -x509 -nodes -days 365 -newkey rsa:2048 -subj / -keyout /etc/ssl/private/server.key -out /etc/ssl/private/server.crt
RUN openssl req -x509 -nodes -days 365 -newkey rsa:2048 -subj / -keyout /etc/ssl/private/server.key -out /etc/ssl/private/server.crt
2 changes: 1 addition & 1 deletion image/resources/entrypoint.conf
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ directory=/application/backend
[proxy]
signal=SIGTERM
command=socat OPENSSL-LISTEN:8443,cert=/etc/ssl/private/server.crt,key=/etc/ssl/private/server.key,verify=0,fork TCP:0.0.0.0:8080
directory=/application/backend
directory=/application/backend
2 changes: 1 addition & 1 deletion image/resources/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ hiredis==3.0.0
munch==4.0.0
rednest==0.7.0
runtypes==0.6.3
guardify==0.4.0
guardify==0.4.0
2 changes: 1 addition & 1 deletion image/src/frontend/application/application.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
body {
max-width: 500px;
max-width: 800px;
}
2 changes: 1 addition & 1 deletion image/src/frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@
<body class="column">
<!--App Layout-->
</body>
</html>
</html>
2 changes: 1 addition & 1 deletion image/src/frontend/stylesheets/colors.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
--active: #c0c0c0;
--passive: #f0f0f0;
}
}
}
2 changes: 1 addition & 1 deletion image/src/frontend/stylesheets/layout.css
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,4 @@ div.left {
div.right {
/* Align flex items to the right */
justify-content: right;
}
}
2 changes: 1 addition & 1 deletion image/src/frontend/stylesheets/modals.css
Original file line number Diff line number Diff line change
Expand Up @@ -87,4 +87,4 @@ html:has(.overlay) {
100% {
transform: rotate(360deg);
}
}
}
2 changes: 1 addition & 1 deletion image/src/frontend/stylesheets/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -134,4 +134,4 @@ html {
[hidden], .hidden, *::-webkit-scrollbar {
/* Layout properties */
display: none !important;
}
}
2 changes: 1 addition & 1 deletion resources/headless/example-page.html
Original file line number Diff line number Diff line change
Expand Up @@ -153,4 +153,4 @@
<button class="small left" onclick="progressScreen('Sleeping for 10 seconds', sleep(10 * 1000))">Spawn loading screen</button>
</div>
</body>
</html>
</html>

0 comments on commit a020187

Please sign in to comment.