Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
ilude committed May 8, 2024
1 parent 508b9ba commit 266631a
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,9 @@ COPY --chown=${USER}:${USER} app ${PROJECT_PATH}
ENV FLASK_ENV=production

RUN mkdir /cache && \
chown -R ${USER}:${USER} /cache
chown -R ${USER}:${USER} /cache && \
mkdir -p /app/static/icons && \
chown -R ${USER}:${USER} /app/static

CMD [ "python3", "app.py" ]

Expand Down
26 changes: 26 additions & 0 deletions app/defaults/bookmarks_bar.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[
{
"name": "Gmail",
"href": "https://mail.google.com/mail/u/0/#inbox",
"favicon": "/static/assets/icons/google.com.favicon.ico",
"add_date": "1587496250"
},
{
"name": "YouTube",
"href": "https://www.youtube.com/",
"favicon": "/static/assets/icons/youtube.com.favicon.ico",
"add_date": "1563757631"
},
{
"name": "Reddit",
"href": "https://www.reddit.com/",
"favicon": "/static/assets/icons/reddit.com.favicon.ico",
"add_date": "1566479421"
},
{
"name": "Kanban - agpm-demo",
"href": "https://tree.taiga.io/project/ilude-agpm-demo/kanban",
"favicon": "/static/assets/icons/taiga.io.favicon.ico",
"add_date": "1713923017"
}
]
1 change: 1 addition & 0 deletions app/defaults/processed_domains.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[]]

0 comments on commit 266631a

Please sign in to comment.