Skip to content
Merged
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
6 changes: 0 additions & 6 deletions .editorconfig

This file was deleted.

4 changes: 0 additions & 4 deletions .envrc

This file was deleted.

5 changes: 0 additions & 5 deletions .flake8

This file was deleted.

11 changes: 0 additions & 11 deletions .gitconfig

This file was deleted.

32 changes: 32 additions & 0 deletions .github/workflows/build_nix.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: CI

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build-x86_64:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Install Nix
uses: cachix/install-nix-action@v26

- name: Build Shepherd x86_64
run: nix build .#cross-x86_64

build-aarch64:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Install Nix
uses: cachix/install-nix-action@v26

- name: Build Shepherd aarch64
run: nix build .#cross-aarch64
34 changes: 0 additions & 34 deletions .github/workflows/flakehell.yml

This file was deleted.

35 changes: 0 additions & 35 deletions .github/workflows/node.js.yml

This file was deleted.

130 changes: 16 additions & 114 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,119 +1,21 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg

# 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/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
# Cargo
target/

# Jupyter Notebook
.ipynb_checkpoints

# pyenv
.python-version

# celery beat schedule file
celerybeat-schedule

# SageMath parsed files
*.sage.py

# dotenv
.env

# virtualenv
.venv
venv/
ENV/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/

# sheep node_modules
sheepsrc/node_modules
# Docs + Sheep static files
static/docs/*
!static/docs/README.md
static/editor/*
!static/editor/README.md

# pycharm config
.idea
# Testing files
test.png
test.jpg
test.py
test.txt
test.zip

# fake pi packages
RPi
smbus
robot
usercode
shepherd/static/image.jpg
robotsrc
sheepsrc/.idea
# direnv
.direnv/

# vscode dev folder
.vscode
# Nix
result
3 changes: 0 additions & 3 deletions .gitmodules

This file was deleted.

Loading
Loading