diff --git a/Dockerfile b/Dockerfile index 174e281..32a4581 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,8 +6,8 @@ COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt -COPY site /app/site +COPY app /app/app EXPOSE 5000 -CMD ["gunicorn", "--bind", "0.0.0.0:5000", "--timeout", "300", "--workers", "1", "site.app:app"] +CMD ["gunicorn", "--bind", "0.0.0.0:5000", "--timeout", "300", "--workers", "1", "app.app:app"] diff --git a/site/app.py b/app/app.py similarity index 100% rename from site/app.py rename to app/app.py diff --git a/site/services/drhider.py b/app/services/drhider.py similarity index 100% rename from site/services/drhider.py rename to app/services/drhider.py diff --git a/site/services/llm_client.py b/app/services/llm_client.py similarity index 100% rename from site/services/llm_client.py rename to app/services/llm_client.py diff --git a/site/static/app.js b/app/static/app.js similarity index 100% rename from site/static/app.js rename to app/static/app.js diff --git a/site/static/app_utils.js b/app/static/app_utils.js similarity index 100% rename from site/static/app_utils.js rename to app/static/app_utils.js diff --git a/site/static/compare.js b/app/static/compare.js similarity index 100% rename from site/static/compare.js rename to app/static/compare.js diff --git a/site/static/favicon.svg b/app/static/favicon.svg similarity index 100% rename from site/static/favicon.svg rename to app/static/favicon.svg diff --git a/site/static/files.js b/app/static/files.js similarity index 100% rename from site/static/files.js rename to app/static/files.js diff --git a/site/static/groups.js b/app/static/groups.js similarity index 100% rename from site/static/groups.js rename to app/static/groups.js diff --git a/site/static/logo.svg b/app/static/logo.svg similarity index 100% rename from site/static/logo.svg rename to app/static/logo.svg diff --git a/site/static/state.js b/app/static/state.js similarity index 100% rename from site/static/state.js rename to app/static/state.js diff --git a/site/templates/architect.html b/app/templates/architect.html similarity index 100% rename from site/templates/architect.html rename to app/templates/architect.html diff --git a/site/templates/architecture-diagram.html b/app/templates/architecture-diagram.html similarity index 100% rename from site/templates/architecture-diagram.html rename to app/templates/architecture-diagram.html diff --git a/site/templates/ci-cd.html b/app/templates/ci-cd.html similarity index 100% rename from site/templates/ci-cd.html rename to app/templates/ci-cd.html diff --git a/site/templates/drhider.html b/app/templates/drhider.html similarity index 100% rename from site/templates/drhider.html rename to app/templates/drhider.html diff --git a/site/templates/index.html b/app/templates/index.html similarity index 100% rename from site/templates/index.html rename to app/templates/index.html diff --git a/site/templates/pipeline.html b/app/templates/pipeline.html similarity index 100% rename from site/templates/pipeline.html rename to app/templates/pipeline.html