diff --git a/backend/.gitignore b/.gitignore similarity index 52% rename from backend/.gitignore rename to .gitignore index 06c60eb..d9236cd 100644 --- a/backend/.gitignore +++ b/.gitignore @@ -1,4 +1,54 @@ # Dependencies +backend/node_modules/ +frontend/node_modules/ + +/.pnp +.pnp.js + +# Testing +/coverage + +# Production +/build + +# Misc +.DS_Store +.env.local +.env.development.local +.env.test.local +.env.production.local +.env + +# Logs +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# IDEs +.vscode/ +.idea/ +*.swp +*.swo + +# OS generated files +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db + +# Environment variables +.env +.env.local +.env.development.local +.env.test.local +.env.production.local + + +---- +# Dependencies node_modules/ npm-debug.log* yarn-debug.log* @@ -24,7 +74,9 @@ database/*.db-journal # Logs logs *.log -src/python-scripts/progress_data/* + +# Privat +backend/src/python-scripts/progress_data/*.json # Runtime data pids diff --git a/backend/src/python-scripts/run_20251021_105426_failure.json b/backend/src/python-scripts/run_20251021_105426_failure.json deleted file mode 100644 index b1894fc..0000000 --- a/backend/src/python-scripts/run_20251021_105426_failure.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "timestamp": "2025-10-21T10:54:26.093544", - "success": false, - "metadata": { - "solveTime": 0, - "constraintsAdded": 0, - "variablesCreated": 0, - "optimal": false - }, - "progress": [], - "solution_summary": { - "assignments_count": 0, - "violations_count": 1, - "variables_count": 0, - "constraints_count": 0, - "solve_time": 0, - "optimal": false - }, - "full_result": { - "assignments": [], - "violations": [ - "Error: 'SolutionCallback' object has no attribute 'HasObjective'" - ], - "success": false, - "metadata": { - "solveTime": 0, - "constraintsAdded": 0, - "variablesCreated": 0, - "optimal": false - } - } -} \ No newline at end of file diff --git a/backend/src/python-scripts/run_20251021_105936_failure.json b/backend/src/python-scripts/run_20251021_105936_failure.json deleted file mode 100644 index 0f0d63e..0000000 --- a/backend/src/python-scripts/run_20251021_105936_failure.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "timestamp": "2025-10-21T10:59:36.646855", - "success": false, - "metadata": { - "solveTime": 0, - "constraintsAdded": 0, - "variablesCreated": 0, - "optimal": false - }, - "progress": [], - "solution_summary": { - "assignments_count": 0, - "violations_count": 1, - "variables_count": 0, - "constraints_count": 0, - "solve_time": 0, - "optimal": false - } -} \ No newline at end of file diff --git a/backend/src/python-scripts/run_20251021_110336_success.json b/backend/src/python-scripts/run_20251021_110336_success.json deleted file mode 100644 index 2ddf8ca..0000000 --- a/backend/src/python-scripts/run_20251021_110336_success.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "timestamp": "2025-10-21T11:03:36.697986", - "success": true, - "metadata": { - "solveTime": 0.025875500000000003, - "constraintsAdded": 217, - "variablesCreated": 90, - "optimal": true - }, - "progress": [ - { - "timestamp": 0.008769989013671875, - "objective": 1050.0, - "bound": 2000.0, - "solution_count": 1 - }, - { - "timestamp": 0.009685516357421875, - "objective": 1250.0, - "bound": 1700.0, - "solution_count": 2 - }, - { - "timestamp": 0.010709047317504883, - "objective": 1300.0, - "bound": 1300.0, - "solution_count": 3 - } - ], - "solution_summary": { - "assignments_count": 15, - "violations_count": 0, - "variables_count": 90, - "constraints_count": 217, - "solve_time": 0.025875500000000003, - "optimal": true - } -} \ No newline at end of file diff --git a/frontend/.gitignore b/frontend/.gitignore deleted file mode 100644 index c1dc939..0000000 --- a/frontend/.gitignore +++ /dev/null @@ -1,45 +0,0 @@ -# Dependencies -node_modules/ -/.pnp -.pnp.js - -# Testing -/coverage - -# Production -/build - -# Misc -.DS_Store -.env.local -.env.development.local -.env.test.local -.env.production.local -.env - -# Logs -npm-debug.log* -yarn-debug.log* -yarn-error.log* - -# IDEs -.vscode/ -.idea/ -*.swp -*.swo - -# OS generated files -.DS_Store -.DS_Store? -._* -.Spotlight-V100 -.Trashes -ehthumbs.db -Thumbs.db - -# Environment variables -.env -.env.local -.env.development.local -.env.test.local -.env.production.local \ No newline at end of file