Compare commits

..

2 Commits

Author SHA1 Message Date
Lukáš Kucharczyk 809caa1027
Fix path in pyproject.toml
continuous-integration/drone/push Build is failing Details
2023-01-19 22:05:18 +01:00
Lukáš Kucharczyk f71ebe7a08
Fix more errors 2023-01-19 21:57:14 +01:00
5 changed files with 5 additions and 8 deletions

2
.gitignore vendored
View File

@ -5,4 +5,4 @@ __pycache__
node_modules
package-lock.json
db.sqlite3
src/timetracker/static
static

View File

@ -9,5 +9,4 @@ poetry run python src/timetracker/manage.py collectstatic --clear --no-input
echo "Starting server"
caddy start
cd src/timetracker || exit
poetry run python -m gunicorn --bind 0.0.0.0:8001 root.asgi:application -k uvicorn.workers.UvicornWorker --access-logfile - --error-logfile -
poetry run python -m gunicorn --bind 0.0.0.0:8001 timetracker.asgi:application -k uvicorn.workers.UvicornWorker --access-logfile - --error-logfile -

View File

@ -13,9 +13,7 @@ def version_date():
"%d-%b-%Y %H:%m",
time.gmtime(
os.path.getmtime(
os.path.abspath(
os.path.join(settings.BASE_DIR, "..", "..", "pyproject.toml")
)
os.path.abspath(os.path.join(settings.BASE_DIR, "pyproject.toml"))
)
),
)

View File

@ -31,4 +31,4 @@ requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
timetracker-import = "timetracker.common.import_data:import_from_file"
timetracker-import = "common.import_data:import_from_file"

View File

@ -14,7 +14,7 @@ import os
from pathlib import Path
# Build paths inside the project like this: BASE_DIR / 'subdir'.
BASE_DIR = Path(__file__).resolve()
BASE_DIR = Path(__file__).resolve().parent.parent
# Quick-start development settings - unsuitable for production