change more filenames and strings to say taskmanager instead of flaskapp

This commit is contained in:
fram3d 2024-01-16 13:24:45 +01:00
parent 7aa57af9ef
commit d9a73a6fd9
Signed by: fram3d
GPG Key ID: 938920E709EEA32A
4 changed files with 17 additions and 6 deletions

4
.gitignore vendored
View File

@ -24,11 +24,11 @@ dist/
downloads/
eggs/
.eggs/
lib/
#lib/
lib64/
parts/
sdist/
var/
#var/
wheels/
pip-wheel-metadata/
share/python-wheels/

View File

@ -219,7 +219,7 @@ If you develop a new program, and you want it to be of the greatest possible use
To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found.
flaskapp
taskmanager
Copyright (C) 2023 Decentrala
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,4 +1,3 @@
# flaskapp
Web app
# taskmanager
Interactive TODO list web application

View File

@ -0,0 +1,12 @@
[Unit]
Description=Gunicorn taskmanager service
Documentation=man:gunicorn(1)
After=network.target nss-lookup.target
[Service]
WorkingDirectory=/var/taskmanager/
ExecStart=/usr/bin/gunicorn --workers 3 --bind 127.0.0.1:5000 run:app
[Install]
WantedBy=multi-user.target