Skip to content

Commit

Permalink
initial web-app commit
Browse files Browse the repository at this point in the history
  • Loading branch information
BryonLewis committed Feb 6, 2025
1 parent 5b1ab1d commit 330fae6
Show file tree
Hide file tree
Showing 264 changed files with 69,206 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
root = true

[*]
indent_style = space
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
charset = utf-8

[*.py]
indent_size = 4
max_line_length = 100

[*.html]
indent_size = 2

[*.css]
indent_size = 2

[{*.yml,*.yaml}]
indent_size = 2

[*.ini]
indent_size = 4

[*.sh]
indent_size = 2
50 changes: 50 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: ci
on:
pull_request:
push:
branches:
- master

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: hoverkraft-tech/[email protected]
with:
compose-file: |
docker-compose.yml
docker-compose.override.yml
- run: |
docker compose exec django tox -e lint
lint-client:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- run: cd client && npm i && npm run lint

pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: hoverkraft-tech/[email protected]
with:
compose-file: |
docker-compose.yml
docker-compose.override.yml
- run: |
docker compose exec django tox -e test
check-migrations:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: hoverkraft-tech/[email protected]
with:
compose-file: |
docker-compose.yml
docker-compose.override.yml
- run: |
docker compose exec django tox -e check-migrations
135 changes: 135 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,135 @@
.terraform/
postgres/*
minio/*
rabbitmq/*
.vscode/
staticfiles/
**/.DS_Store
# osmnx data cache folder
cache

# Created by https://www.gitignore.io/api/django
# Edit at https://www.gitignore.io/?templates=django

### Django ###
*.log
*.pot
*.pyc
__pycache__/
local_settings.py
db.sqlite3
db.sqlite3-journal
media

# If your build process includes running collectstatic, then you probably don't need or want to include staticfiles/
# in your Git repository. Update and uncomment the following line accordingly.
# <django-project-name>/staticfiles/

### Django.Python Stack ###
# Byte-compiled / optimized / DLL files
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/

# Translations
*.mo

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# pyenv
.python-version

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock

# celery beat schedule file
celerybeat-schedule

# SageMath parsed files
*.sage.py

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# Mr Developer
.mr.developer.cfg
.project
.pydevproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

# End of https://www.gitignore.io/api/django


# Add direnv support
.envrc
Loading

0 comments on commit 330fae6

Please sign in to comment.