Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions sample_solutions/DocQvision/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Docker Compose Configuration

# Local URL Endpoint (only needed for non-public domains)
# If using a local domain like api.example.com mapped to localhost, set to the domain without https://
# Otherwise, set to: not-needed
LOCAL_URL_ENDPOINT=not-needed

BACKEND_PORT=5001
FRONTEND_PORT=3000
70 changes: 70 additions & 0 deletions sample_solutions/DocQvision/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
# Environment variables and secrets
.env
.env.local
.env.*.local
*.env

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
env/
venv/
ENV/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg

# IDEs
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
Thumbs.db

# Logs
*.log
logs/

# Testing
.pytest_cache/
.coverage
htmlcov/
tests/

# Node modules
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Docker
*.pid

# Database files
*.db
*.sqlite
*.sqlite3

# Temporary files
*.tmp
*.bak
nul
tmp/
temp/
Loading