From 4e14b8c61d2586e52945c176759256ae4b7e09d4 Mon Sep 17 00:00:00 2001
From: danielmyren <daniel.j.myren@gmail.com>
Date: Thu, 11 Apr 2024 10:57:47 +0200
Subject: [PATCH] Cleaned up project files, removed duplicates

---
 backend/README.md    | 35 -----------------------------------
 requirements.txt     |  9 ---------
 server.py            | 19 -------------------
 setup.sh             |  5 -----
 templates/index.html |  9 ---------
 5 files changed, 77 deletions(-)
 delete mode 100644 backend/README.md
 delete mode 100644 requirements.txt
 delete mode 100755 server.py
 delete mode 100755 setup.sh
 delete mode 100644 templates/index.html

diff --git a/backend/README.md b/backend/README.md
deleted file mode 100644
index 82b4075..0000000
--- a/backend/README.md
+++ /dev/null
@@ -1,35 +0,0 @@
-# Requirements
-- Visualize statistical data from Statistikdatbasen.scb.se focusing on European Parliamental Election data.
-- The data contains geographical information and thus can be vizualized on the map
-
-- D3 library will be used for graphical visalization
-- **Frontend:** React , **Backend:** SQLAlchemy
-
-- Dataman.se for topological data of sweden borders
-
-## BASIC:
-- Given hard coded table x,y data as input and visualize it on a plot
-- Given hard coded table x,y, postition data as input, vizualize it on the map
-- Mouse hover interaction on map of Sweden, highlighting the region the mouse currently hovers over
-
-## IDEA 1:
-- Visualize regional data on map of sweden
-- Allows for focusing in on specific region for more fine detailed data
-
-## IDEA2:
-
-## ADVANDCED:
-- Optional parameters?
-- Interactive visalization
-- Through API(Statistikdatabsen.scb.s) fetch live data and visualize it
-- Graphical transitions of the visalization frame
-
-## Profile
-- Log in / Sign out
-- Session token for saving log-in state locally
-- Access to key features through log-in.
-- User profile (Name, e-mail, password)
-- Session token
-- 
-
-
diff --git a/requirements.txt b/requirements.txt
deleted file mode 100644
index 1aa680e..0000000
--- a/requirements.txt
+++ /dev/null
@@ -1,9 +0,0 @@
-blinker==1.7.0
-click==8.1.7
-Flask==3.0.2
-importlib_metadata==7.1.0
-itsdangerous==2.1.2
-Jinja2==3.1.3
-MarkupSafe==2.1.5
-Werkzeug==3.0.1
-zipp==3.18.1
diff --git a/server.py b/server.py
deleted file mode 100755
index 7877ae3..0000000
--- a/server.py
+++ /dev/null
@@ -1,19 +0,0 @@
-from flask import Flask, render_template
-
-app = Flask(__name__)
-
-@app.route("/")
-def homepage():
-    print("what")
-    return render_template("index.html")
-
-if __name__ == '__main__':
-    app.debug = True
-    app.run()
-
-
-
-
-
-
- 
\ No newline at end of file
diff --git a/setup.sh b/setup.sh
deleted file mode 100755
index d79b0a6..0000000
--- a/setup.sh
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/bash
-# Allow execution by running: chmod u+x setup.sh
-python3 -m venv venv
-. venv/bin/activate
-pip install -r requirements.txt
\ No newline at end of file
diff --git a/templates/index.html b/templates/index.html
deleted file mode 100644
index 9dfa6e4..0000000
--- a/templates/index.html
+++ /dev/null
@@ -1,9 +0,0 @@
-<!doctype html>
-<html>
-  <head>
-    <title>This is the title of the webpage!</title>
-  </head>
-  <body>
-    <p>This is an example paragraph. Anything in the <strong>body</strong> tag will appear on the page, just like this <strong>p</strong> tag and its contents.</p>
-  </body>
-</html>
\ No newline at end of file
-- 
GitLab