-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Adds new landing page and updates internal page styling #2055
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from 14 commits
92165c4
ddf631c
5e79b3e
09111ec
f3ca2c5
5ef0724
7421345
b39decf
f80c024
92d9c88
973822e
106d340
fedd27b
e1f5723
0a1407e
f150362
aa341e1
3bbe12f
a1424af
877e385
a3c8291
a4346ef
86c773f
d2d434e
d05b9ea
f0d4190
0033ea8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"tabWidth": 2 | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,17 @@ | ||
FROM python:3.9 | ||
FROM node:23.8-bullseye AS node-builder | ||
|
||
COPY ./ ./ | ||
|
||
FROM python:3.9 AS final | ||
|
||
COPY requirements.txt ./ | ||
RUN pip install -r requirements.txt | ||
RUN pip install --no-cache-dir -r requirements.txt | ||
RUN pip install keras --upgrade | ||
|
||
COPY ./ ./ | ||
WORKDIR scripts | ||
COPY --from=node-builder /bundle ./bundle | ||
|
||
WORKDIR /scripts | ||
RUN python autogen.py make | ||
|
||
CMD ["python", "-u", "autogen.py", "serve"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think you need all this. Maybe just ignore
.idea/
?