Skip to content

Commit

Permalink
Merge branch 'release' into explanation_visualisation
Browse files Browse the repository at this point in the history
  • Loading branch information
Daphne Odekerken committed Apr 17, 2024
2 parents 5b9df21 + dc386e2 commit af02734
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 550 deletions.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
FROM python:3.11
FROM python:3.11-bookworm

# Create a working directory.
WORKDIR /usr/src/app

# Install Python dependencies.
RUN apt update
RUN apt install -y gringo
COPY requirements.txt .
RUN pip3 install -r requirements.txt
RUN pip3 install uwsgi
Expand Down
Binary file modified requirements.txt
Binary file not shown.
5 changes: 1 addition & 4 deletions src/py_arg_visualisation/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,6 @@
children=[
dbc.DropdownMenuItem('Abstract', href='21-visualise-abstract',
className='fw-bold text-white'),
dbc.DropdownMenuItem('Tweety API Test',
href='24-visualise-tweety-services-test',
className='fw-bold text-white'),
dbc.DropdownMenuItem('ASPIC+', href='22-visualise-aspic',
className='fw-bold text-white'),
dbc.DropdownMenuItem('ABA', href='23-visualise-aba',
Expand Down Expand Up @@ -153,4 +150,4 @@ def toggle_reference_modal(nr_of_clicks: int, is_open: bool, url_path: str):

# Running the app.
if __name__ == '__main__':
app.run_server(debug=True)
app.run_server(debug=False)
Loading

0 comments on commit af02734

Please sign in to comment.