diff --git a/backend/README.md b/backend/README.md
deleted file mode 100644
index 82b407500820f32dd1e19836b2145af7124891f6..0000000000000000000000000000000000000000
--- 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 1aa680e0077d37a862ff1fa945dd13d11f2e0bc0..0000000000000000000000000000000000000000
--- 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 7877ae3233393f2ef30c2dafe1e6fea41075137e..0000000000000000000000000000000000000000
--- 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 d79b0a6658b10b810512a438f462afd2876767de..0000000000000000000000000000000000000000
--- 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 9dfa6e4bc843d036fdb7e49075f4d7ee31f83715..0000000000000000000000000000000000000000
--- 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