Skip to content

Commit

Permalink
Back End: Remove SCSS Compiler
Browse files Browse the repository at this point in the history
Drop `flask_scss` as a dependency because all SCSS files have been
removed in 468fbef.

Feel free to revert if this causes issues.
  • Loading branch information
fabiancdng committed Feb 5, 2022
1 parent 97bf2d8 commit 4e4bd67
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
5 changes: 0 additions & 5 deletions main.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
from flask_scss import Scss

from globals import app
from helpers import init
from routes import user
Expand Down Expand Up @@ -36,8 +34,5 @@ def add_header(r):
r.headers["Access-Control-Allow-Origin"] = "*"
return r


Scss(app, static_dir="public/materialize", asset_dir="sass/materialize", load_paths=["sass/materialize/components", "sass/materialize/components/forms"])

if __name__ == "__main__":
app.run("0.0.0.0", config.port)
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ bcrypt~=3.2.0
Flask~=2.0.2
Flask-Login~=0.5.0
Flask-SQLAlchemy~=2.5.1
Flask-Scss~=0.5
Flask-WTF~=0.15.1
email-validator~=1.1.2
SQLAlchemy~=1.4.31
Expand Down

0 comments on commit 4e4bd67

Please sign in to comment.