diff --git a/Dockerfile b/Dockerfile index 5b06433..f6f817c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,4 +9,4 @@ RUN flutter build web # Create the run-time image FROM nginx:1.21.1-alpine -COPY --from=build-env /app/build/web /usr/share/nginx/html/web +COPY --from=build-env /app/build/web /usr/share/nginx/html diff --git a/lib/api.dart b/lib/api.dart index 65a468c..a3cd5f0 100644 --- a/lib/api.dart +++ b/lib/api.dart @@ -27,7 +27,6 @@ class API { this.instance = instance; } - // todo : rework with auth String instance = ""; Future getRequest(String url) async { diff --git a/lib/main.dart b/lib/main.dart index 80312ac..689c7fc 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -26,8 +26,6 @@ class MyApp extends StatelessWidget { } } -// todo : add setup with instance and token auth (api) - class StatsPage extends StatelessWidget { const StatsPage({super.key});