Compare commits

...

5 Commits

Author SHA1 Message Date
Malin Freeborn cda12028c1
make Makefile
Every project should have a Makefile ;)
2024-06-10 20:23:57 +02:00
Malin Freeborn 7ea0a7ddb7
fix typo 2024-06-10 20:23:08 +02:00
fram3d a2ec1aeebd
fix typo 2024-02-14 00:25:59 +01:00
fram3d 004b1a1c37 Merge branch 'fix/relative-path-and-docs' 2024-02-14 00:05:04 +01:00
coja e632ca23a5 Merge pull request 'Changed to relative path and updated the documentation' (#6) from fix/relative-path-and-docs into master
Reviewed-on: #6
2024-01-28 19:50:48 +00:00
3 changed files with 20 additions and 1 deletions

19
Makefile Normal file
View File

@ -0,0 +1,19 @@
VENV = venv
PYTHON = $(VENV)/bin/python3
PIP = $(VENV)/bin/pip
run: $(VENV)/bin/activate
$(PYTHON) init_db.py
$(PYTHON) run.py
$(VENV)/bin/activate: requirements.txt
python3 -m venv $(VENV)
$(PIP) install -r requirements.txt
clean:
rm -rf __pycache__
rm -rf $(VENV)
rm -r taskmanager/__pycache__/
rm instance/taskmanager.db

View File

@ -29,7 +29,7 @@ def addtask():
username = request.form['username']
# Input sanitation
# Task name
if not taskname.printable() or ("<" in taskname and ">" in taskname):
if not taskname.isprintable() or ("<" in taskname and ">" in taskname):
return render_template('pages/response.html', response = "Task name has to be made only of letters or numbers.")
if len(taskname) < 1 or len(taskname) > 40:
return render_template('pages/response.html', response = "Task name lenght invalid, only smaller then 40 charachters allowed")