Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
003ea47
cleaning up and easing container setup
atanikan Nov 11, 2025
b95e9ec
Added github docs pages
atanikan Nov 11, 2025
ed642de
Added mkdocs and deploy folders for easy installation
atanikan Nov 12, 2025
2ef4f34
Added mkdocs and deploy folders for easy installation
atanikan Nov 12, 2025
6b2952f
renamed first title
atanikan Nov 12, 2025
6c148d3
changed site name
atanikan Nov 12, 2025
db0c8dd
Deploying from both main and container setup branch
atanikan Nov 12, 2025
fa6542b
Remove built MkDocs site folder from repo
atanikan Nov 12, 2025
d82dc22
removed [x] for consistency
Nov 13, 2025
d7a272b
removed unnecessary CLI_AUTH_CLIENT_ID variable
Nov 13, 2025
2ba5cf5
Added more endpoint templates and examples
atanikan Nov 13, 2025
852b7eb
moved Globus-setup related instructions into separate section
Nov 13, 2025
381a735
added starting point for Globus section
Nov 13, 2025
3649670
added more details to globus setup page
Nov 13, 2025
f6f907e
updated .env example file
Nov 13, 2025
046c903
updated .env example file
Nov 13, 2025
130fd11
moved env example file to base of this repo to be reusable
Nov 13, 2025
82ae9d2
added ALLOWED_HOSTS in the settings.py so that it grabs it from .env
Nov 13, 2025
3b7f4e0
moved .env examples to a reference to the env.example file
Nov 13, 2025
0ddc01b
removed text duplication for started docker services
Nov 13, 2025
e1bafe3
edited test command
Nov 13, 2025
e321579
removed static files and added makemigrations for consistency
Nov 13, 2025
157a6fd
Merge pull request #174 from auroraGPT-ANL/container_setup_dev_benoit
atanikan Nov 14, 2025
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
64 changes: 64 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,67 @@
# Environment files
.env
.env.*
.venv/
venv/
env/

# Python cache
__pycache__/
*.py[cod]
*$py.class
*.so
.Python

# Development tools
.git/
.gitignore
.github/
.aider*/
.cursor/

# IDE
.vscode/
.idea/
*.swp
*.swo
*~

# Documentation
docs/
site/
*.md
!README.md

# Logs
logs/
*.log

# Database
*.db
*.sqlite3

# Testing
.pytest_cache/
.coverage
htmlcov/

# Build artifacts
build/
dist/
*.egg-info/

# Docker
docker-compose.yml
Dockerfile
.dockerignore

# Examples and development scripts
examples/
scripts/

# Static files (will be collected in container)
staticfiles/

# Misc
.DS_Store
*.pyc
58 changes: 58 additions & 0 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: Deploy Documentation

on:
push:
branches:
- main
- container_setup
paths:
- 'docs/**'
- 'mkdocs.yml'
- '.github/workflows/deploy-docs.yml'
workflow_dispatch:

permissions:
contents: read
pages: write
id-token: write

concurrency:
group: "pages"
cancel-in-progress: false

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'

- name: Install dependencies
run: |
pip install mkdocs-material
pip install mkdocs-minify-plugin

- name: Build MkDocs site
run: mkdocs build

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./site

deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,6 @@ db_backup.sqlite3

# vllm
vllm/

# mkdocs
site/
49 changes: 0 additions & 49 deletions Dockerfile

This file was deleted.

Loading