Skip to content

Commit 9e886a8

Browse files
committed
Lets go
1 parent f5260f8 commit 9e886a8

27 files changed

+28
-7688
lines changed

Dockerfile

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Base image
2+
FROM python:3.12-slim
3+
4+
# Set the working directory
5+
WORKDIR /app
6+
7+
# Copy main repository files
8+
COPY . .
9+
10+
# Initialize and update submodules
11+
RUN git submodule update --init --recursive
12+
13+
# Install dependencies
14+
RUN pip install -r requirements.txt
15+
16+
# Expose the port your application uses
17+
EXPOSE 8000
18+
19+
# Command to run the application
20+
CMD ["python", "start.py"]

ardublockly/ardublockly.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -562,6 +562,7 @@ ul.side-nav li.side-menu-end {
562562
.sketch_name_wrapper {
563563
display: inline-block;
564564
padding-left: 5px;
565+
position: fixed;
565566
}
566567
.sketch_name_icon {
567568
display: inline !important;

ardublockly/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,11 @@
7777
<a class="show-on-large button-collapse" href="#" data-activates="slide-out" id="button-collapse"><i class="mdi-navigation-menu"></i></a>
7878
<a id="logo-container" class="brand-logo">
7979
<span>
80-
<img src="/ardublockly/img/spacerobots-w.png" alt="Space Robots" style="width: 15%;">
80+
<img src="https://import.cdn.thinkific.com/285345%2Fcustom_site_themes%2Fid%2Ftai5f14XSg684APMo4ZJ_Untitled-112.png" alt="Friend Robot" style="width: 15%; padding-top: 20px; margin-right: 10px">
8181
<!-- style="width: 10%; height: 100%;" -->
8282
<!-- Sketch name editable text field -->
8383
</span>
84-
<span class="sketch_name_wrapper" style="padding-bottom: 100px;">
84+
<span class="sketch_name_wrapper">
8585
<i class="mdi-image-edit sketch_name_icon"></i>
8686
<input id="sketch_name" class="sketch_name" type="text">
8787
</span>

0 commit comments

Comments
 (0)