Skip to content

Commit c1d2f22

Browse files
author
Tom Softreck
committed
update structure
1 parent c810778 commit c1d2f22

11 files changed

Lines changed: 456 additions & 202 deletions

.env.example

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Application Settings
2+
ENVIRONMENT=development
3+
DEBUG=true
4+
SECRET_KEY=your-secret-key-here
5+
6+
# Database
7+
DATABASE_URL=postgresql://user:password@localhost:5432/taskprovision
8+
9+
# Redis
10+
REDIS_URL=redis://localhost:6379/0
11+
12+
# Ollama
13+
OLLAMA_BASE_URL=http://localhost:11434
14+
15+
# GitHub (for repository integration)
16+
GITHUB_TOKEN=your-github-token
17+
18+
# Logging
19+
LOG_LEVEL=INFO
20+
LOG_FORMAT=json
21+
22+
# CORS (comma-separated origins)
23+
CORS_ORIGINS=http://localhost:3000,http://localhost:8000
24+
25+
# Session
26+
SESSION_SECRET=your-session-secret
27+
SESSION_MAX_AGE=86400 # 24 hours

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ package-lock.json
77
tasksprovision.*
88
taskprovision.*
99
pyproject.toml.backup
10+
wheel
11+
.venv
12+
.env
1013
.backup
1114
.bak
1215
venv

Makefile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,8 +240,6 @@ help: ## Show this help message
240240
##@ Phony Targets
241241
.PHONY: setup-env install install-dev test test-cov lint format docs serve-docs \
242242
build publish docker-up docker-down docker-logs clean clean-all help
243-
publish: build
244-
$(POETRY) publish
245243

246244
# Generate documentation
247245
docs:

minimal_test.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
"""
2+
A minimal test file to debug pytest issues.
3+
"""
4+
5+
def test_minimal():
6+
"""A minimal test that should always pass."""
7+
assert 1 + 1 == 2
8+
9+
if __name__ == "__main__":
10+
import pytest
11+
import sys
12+
sys.exit(pytest.main(["-v"]))

0 commit comments

Comments
 (0)