Skip to content

Commit

Permalink
Merge pull request #2 from ral-facilities/initialise-repo-#1
Browse files Browse the repository at this point in the history
Initialise repo #1
  • Loading branch information
joelvdavies authored Sep 19, 2024
2 parents 7547baf + aa62471 commit b6a5e9f
Show file tree
Hide file tree
Showing 17 changed files with 1,320 additions and 1 deletion.
32 changes: 32 additions & 0 deletions .github/.ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: CI
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
- develop

permissions:
contents: read

jobs:
linting:
name: Linting
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7

- name: Set up Python
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
with:
python-version: "3.12"
cache: "pip"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .[code-analysis]
- name: Run pylint
run: pylint object_storage_api
16 changes: 16 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
## Description

Enter a description of the changes here

## Testing instructions

Add a set up instructions describing how the reviewer should test the code

- [ ] Review code
- [ ] Check Actions build
- [ ] Review changes to test coverage
- [ ] {more steps here}

## Agile board tracking

connect to #{issue number}
63 changes: 63 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
version: 2
updates:
# Maintain Dockerfile dependencies on the `develop` branch
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: daily
time: "08:00"
timezone: "Europe/London"
target-branch: "develop"
ignore:
- dependency-name: "python"
update-types: ["version-update:semver-major", "version-update:semver-minor"]

# Maintain Dockerfile dependencies on the `main` branch
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: daily
time: "08:00"
timezone: "Europe/London"
target-branch: "main"
ignore:
- dependency-name: "python"
update-types: ["version-update:semver-major", "version-update:semver-minor"]

# Maintain dependencies for GitHub Actions on the `develop` branch
- package-ecosystem: "github-actions"
directory: "/"
schedule:
# Check for updates every week
interval: "weekly"
target-branch: "develop"
# Update multiple dependencies at the same time
groups:
github-actions:
patterns:
- "*"

# Maintain dependencies for GitHub Actions on the `main` branch
- package-ecosystem: "github-actions"
directory: "/"
schedule:
# Check for updates every week
interval: "weekly"
target-branch: "main"
# Update multiple dependencies at the same time
groups:
github-actions:
patterns:
- "*"

# Maintain pip dependencies
- package-ecosystem: "pip"
directory: "/"
schedule:
# Check for updates every week
interval: "weekly"
# Update multiple dependencies at the same time
groups:
pip:
patterns:
- "*"
156 changes: 156 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,156 @@
.idea/
.vscode/
mongodb/data/*
!mongodb/data/.keep
object_storage_api/logging.ini
/keys/jwt-key.pub
/mongodb/keys/rs_keyfile

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

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
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
*.py,cover
.hypothesis/
.pytest_cache/
cover/

# Translations
*.mo
*.pot

# Django stuff:
*.log
*.log.*
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
.pybuilder/
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
# For a library or package, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# .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

# poetry
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
# This is especially recommended for binary packages to ensure reproducibility, and is more
# commonly ignored for libraries.
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
#poetry.lock

# pdm
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
#pdm.lock
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
# in version control.
# https://pdm.fming.dev/#use-with-ide
.pdm.toml

# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
__pypackages__/

# Celery stuff
celerybeat-schedule
celerybeat.pid

# SageMath parsed files
*.sage.py

# Environments
.env
.venv
env/
venv*/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

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

# Pyre type checker
.pyre/
Loading

0 comments on commit b6a5e9f

Please sign in to comment.