aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--.devcontainer/bashrc.override.sh20
-rw-r--r--.devcontainer/devcontainer.json36
-rw-r--r--.editorconfig27
-rw-r--r--.readthedocs.yml20
-rw-r--r--docs.yml18
5 files changed, 0 insertions, 121 deletions
diff --git a/.devcontainer/bashrc.override.sh b/.devcontainer/bashrc.override.sh
deleted file mode 100644
index bedddf6..0000000
--- a/.devcontainer/bashrc.override.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-
-#
-# .bashrc.override.sh
-#
-
-# persistent bash history
-HISTFILE=~/.bash_history
-PROMPT_COMMAND="history -a; $PROMPT_COMMAND"
-
-# set some django env vars
-source /entrypoint
-
-# restore default shell options
-set +o errexit
-set +o pipefail
-set +o nounset
-
-# start ssh-agent
-# https://code.visualstudio.com/docs/remote/troubleshooting
-eval "$(ssh-agent -s)"
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
deleted file mode 100644
index b78092f..0000000
--- a/.devcontainer/devcontainer.json
+++ /dev/null
@@ -1,36 +0,0 @@
-// For format details, see https://containers.dev/implementors/json_reference/
-{
- "name": "pyblackbird_cc_dev",
- "dockerComposeFile": [
- "../local.yml"
- ],
- "init": true,
- "mounts": [
- {
- "source": "./.devcontainer/bash_history",
- "target": "/home/dev-user/.bash_history",
- "type": "bind"
- },
- {
- "source": "~/.ssh",
- "target": "/home/dev-user/.ssh",
- "type": "bind"
- }
- ],
- // Tells devcontainer.json supporting services / tools whether they should run
- // /bin/sh -c "while sleep 1000; do :; done" when starting the container instead of the container’s default command
- "overrideCommand": false,
- "service": "django",
- // "remoteEnv": {"PATH": "/home/dev-user/.local/bin:${containerEnv:PATH}"},
- "remoteUser": "dev-user",
- "workspaceFolder": "/app",
- // Set *default* container specific settings.json values on container create.
- "customizations": {
- },
- // Uncomment the next line if you want start specific services in your Docker Compose config.
- // "runServices": [],
- // Uncomment the next line if you want to keep your containers running after VS Code shuts down.
- // "shutdownAction": "none",
- // Uncomment the next line to run commands after the container is created.
- "postCreateCommand": "cat .devcontainer/bashrc.override.sh >> ~/.bashrc"
-}
diff --git a/.editorconfig b/.editorconfig
deleted file mode 100644
index c0ce342..0000000
--- a/.editorconfig
+++ /dev/null
@@ -1,27 +0,0 @@
-# http://editorconfig.org
-
-root = true
-
-[*]
-charset = utf-8
-end_of_line = lf
-insert_final_newline = true
-trim_trailing_whitespace = true
-
-[*.{py,rst,ini}]
-indent_style = space
-indent_size = 4
-
-[*.{html,css,scss,json,yml,xml}]
-indent_style = space
-indent_size = 2
-
-[*.md]
-trim_trailing_whitespace = false
-
-[Makefile]
-indent_style = tab
-
-[default.conf]
-indent_style = space
-indent_size = 2
diff --git a/.readthedocs.yml b/.readthedocs.yml
deleted file mode 100644
index 5564388..0000000
--- a/.readthedocs.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-# Read the Docs configuration file
-# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
-
-# Required
-version: 2
-
-# Set the version of Python and other tools you might need
-build:
- os: ubuntu-22.04
- tools:
- python: '3.12'
-
-# Build documentation in the docs/ directory with Sphinx
-sphinx:
- configuration: docs/conf.py
-
-# Python requirements required to build your docs
-python:
- install:
- - requirements: requirements/local.txt
diff --git a/docs.yml b/docs.yml
deleted file mode 100644
index f7aa212..0000000
--- a/docs.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-version: '3'
-
-services:
- docs:
- image: pyblackbird_cc_local_docs
- container_name: pyblackbird_cc_local_docs
- build:
- context: .
- dockerfile: ./compose/local/docs/Dockerfile
- env_file:
- - ./.envs/.local/.django
- volumes:
- - ./docs:/docs:z
- - ./config:/app/config:z
- - ./pyblackbird_cc:/app/pyblackbird_cc:z
- ports:
- - '9000:9000'
- command: /start-docs