diff --git a/compose.yml b/compose.yml deleted file mode 100644 index aedda0c..0000000 --- a/compose.yml +++ /dev/null @@ -1,14 +0,0 @@ -services: - flask: - build: ./web - environment: - - DB_HOST=mariadb - - DB_USER=flaskuser - - DB_PASSWORD=flaskpass - - DB_NAME=flaskdb - depends_on: - - mariadb - volumes: - - ./web:/app - ports: - - "5000:5000" \ No newline at end of file diff --git a/list.txt b/list.txt deleted file mode 100644 index e09e7d9..0000000 --- a/list.txt +++ /dev/null @@ -1,9 +0,0 @@ -Section 1 — Projets majeurs (6 max) - -1 - Infrastructure self-hosted -2 - GestHub -3 - Mini Born d'arcade -4 - ModulX -5 - Pong LED Arduino -6 - Robot mini-foot - diff --git a/web/app.py b/web/app.py deleted file mode 100644 index f752f2b..0000000 --- a/web/app.py +++ /dev/null @@ -1,28 +0,0 @@ -from flask import Flask, render_template - -app = Flask(__name__, static_folder='static', static_url_path='/static') - -@app.route('/') -def index(): - return render_template('view/index.html') - -@app.route('/about') -def about(): - return render_template('view/about.html') - -@app.route('/contact') -def contact(): - return render_template('view/contact.html') - -@app.route('/projects') -def projects(): - return render_template('view/projects.html') - -@app.route('/experiences') -def experiences(): - return render_template('view/experiences.html') - -if __name__ == '__main__': - # app.run(debug=True) - app.run(debug=True, host='0.0.0.0', port=5000) - diff --git a/web/dockerfile b/web/dockerfile deleted file mode 100644 index 6637610..0000000 --- a/web/dockerfile +++ /dev/null @@ -1,8 +0,0 @@ -FROM python:3.11 - -WORKDIR /web -COPY . /web - -RUN pip install flask - -CMD ["python", "app.py"] diff --git a/web/static/about.css b/web/static/about.css deleted file mode 100644 index e69de29..0000000 diff --git a/web/static/contact.css b/web/static/contact.css deleted file mode 100644 index e69de29..0000000 diff --git a/web/static/experiences.css b/web/static/experiences.css deleted file mode 100644 index e69de29..0000000 diff --git a/web/static/index.css b/web/static/index.css deleted file mode 100644 index bf20c68..0000000 --- a/web/static/index.css +++ /dev/null @@ -1,3 +0,0 @@ -.test{ - -} \ No newline at end of file diff --git a/web/static/projecs.css b/web/static/projecs.css deleted file mode 100644 index e69de29..0000000 diff --git a/web/templates/view/about.html b/web/templates/view/about.html deleted file mode 100644 index a5550df..0000000 --- a/web/templates/view/about.html +++ /dev/null @@ -1,16 +0,0 @@ - - -
- - -