diff --git a/back/Dockerfile.dev b/back/Dockerfile.dev index d407dfa7..89626df0 100644 --- a/back/Dockerfile.dev +++ b/back/Dockerfile.dev @@ -31,6 +31,5 @@ COPY --from=transcoder /transcoder/libtranscoder.so /usr/lib/ EXPOSE 5000 ENV DOTNET_USE_POLLING_FILE_WATCHER 1 -ENV LD_DEBUG libs CMD ["dotnet", "watch", "run", "--no-restore", "--project", "src/Kyoo.Host.Console"] diff --git a/front/public/banner.png b/front/public/banner.png new file mode 100644 index 00000000..db5e97cd Binary files /dev/null and b/front/public/banner.png differ diff --git a/front/public/icon-128x128.png b/front/public/icon-128x128.png new file mode 100644 index 00000000..f602aaaa Binary files /dev/null and b/front/public/icon-128x128.png differ diff --git a/front/public/icon-16x16.png b/front/public/icon-16x16.png new file mode 100644 index 00000000..f0ecbd81 Binary files /dev/null and b/front/public/icon-16x16.png differ diff --git a/front/public/icon-256x256.png b/front/public/icon-256x256.png new file mode 100644 index 00000000..a395f0fe Binary files /dev/null and b/front/public/icon-256x256.png differ diff --git a/front/public/icon-32x32.png b/front/public/icon-32x32.png new file mode 100644 index 00000000..b5944473 Binary files /dev/null and b/front/public/icon-32x32.png differ diff --git a/front/public/icon-64x64.png b/front/public/icon-64x64.png new file mode 100644 index 00000000..ad7d28e9 Binary files /dev/null and b/front/public/icon-64x64.png differ diff --git a/front/src/pages/_document.tsx b/front/src/pages/_document.tsx new file mode 100644 index 00000000..4770da37 --- /dev/null +++ b/front/src/pages/_document.tsx @@ -0,0 +1,41 @@ +/* + * Kyoo - A portable and vast media library solution. + * Copyright (c) Kyoo. + * + * See AUTHORS.md and LICENSE file in the project root for full license information. + * + * Kyoo is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * any later version. + * + * Kyoo is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with Kyoo. If not, see . + */ + +import { Html, Main, Head, NextScript } from "next/document"; + +const Document = () => { + return ( + + + + + + + + + +
+ + + + ); +}; + +export default Document;