설명 없음

gc-server3 be44d1d9fc assets und login 1 개월 전
.vscode ba4f1437b4 init 3 달 전
app 3485341a9d Filter werden angezeigt, haben aber noch keine Funktion 1 개월 전
static be44d1d9fc assets und login 1 개월 전
templates be44d1d9fc assets und login 1 개월 전
.gitignore 1f9ae1f30f dotenv 3 달 전
.python-version ba4f1437b4 init 3 달 전
README.md 2fac46b3d9 Verschiedene Verbesserungen an der Dokumentation und den SQL-Modellen 3 달 전
dev.db dfc1615049 Erster Entwurf von GPT-5 mini 3 달 전
pyproject.toml b55baebab3 Chat und Docx-Export 1 개월 전
specs.md 2fac46b3d9 Verschiedene Verbesserungen an der Dokumentation und den SQL-Modellen 3 달 전
tox.ini dfc1615049 Erster Entwurf von GPT-5 mini 3 달 전
uv.lock b55baebab3 Chat und Docx-Export 1 개월 전

README.md

GCOutline - Minimal prototype

Quickstart (local development):

  1. Create a virtual environment and install dependencies:

    python -m venv .venv
    .\.venv\Scripts\Activate.ps1
    pip install -e .
    pip install -r <(python -c "import tomllib,sys;print('\n'.join([]))")
    

    Alternatively install directly:

    pip install fastapi uvicorn Jinja2 SQLAlchemy alembic ldap3 python-docx openpyxl pandas python-multipart pyodbc aiofiles
    
  2. Run the app:

    uvicorn app.main:app --reload
    
  3. Open http://127.0.0.1:8000 in your browser.

    Notes:

    • The project uses SQLite by default for local development (DATABASE_URL env var can point to MS SQL Server).
    • LDAP authentication will fall back to a local mock where the password password is accepted for any username.
    • Exports are available on the list and detail pages.