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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ __pycache__/
venv*
.ssh/

# Ignore python tooling dirs
*.egg-info/
__pycache__

.env
**/.DS_Store

Expand All @@ -26,3 +30,6 @@ tests/data/*
node_modules
package.json
package-lock.json

# Ignore build artifacts
dist/
3 changes: 1 addition & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,9 @@ repos:
# (for globally changing wording or something)
#- --remove-header
- --license-filepath
- LICENSE_HEADER
- assets/license_file_header.txt
- --use-current-year


- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.11.11
hooks:
Expand Down
File renamed without changes.
File renamed without changes.
7 changes: 4 additions & 3 deletions bin/dev
Original file line number Diff line number Diff line change
Expand Up @@ -79,15 +79,16 @@ devcontainer_install() {
exit 1
fi

if [[ ! -d "$REPO_ROOT/node_modules" ]]; then
cd "$REPO_ROOT/bin/"
if [[ ! -d "$REPO_ROOT/bin/node_modules" ]]; then
npm init -y 1>/dev/null
fi
npm install @devcontainers/cli 1>&2
if [[ $? -ne 0 ]]; then
echo "Failed to install devcontainer CLI. Please install it manually."
exit 1
fi
echo $REPO_ROOT/node_modules/.bin/devcontainer
echo $REPO_ROOT/bin/node_modules/.bin/devcontainer
}


Expand All @@ -97,7 +98,7 @@ find_devcontainer_bin() {
bin_path=$(command -v devcontainer)

if [[ -z "$bin_path" ]]; then
bin_path="$REPO_ROOT/node_modules/.bin/devcontainer"
bin_path="$REPO_ROOT/bin/node_modules/.bin/devcontainer"
fi

if [[ -x "$bin_path" ]]; then
Expand Down
5 changes: 0 additions & 5 deletions dimOS.egg-info/PKG-INFO

This file was deleted.

10 changes: 0 additions & 10 deletions dimOS.egg-info/SOURCES.txt

This file was deleted.

1 change: 0 additions & 1 deletion dimOS.egg-info/dependency_links.txt

This file was deleted.

1 change: 0 additions & 1 deletion dimOS.egg-info/top_level.txt

This file was deleted.

Binary file removed dist/dimos-0.0.0-py3-none-any.whl
Binary file not shown.
Binary file removed dist/dimos-0.0.0.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion docker/dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ COPY docker/dev/dev-requirements.txt /app/
RUN --mount=type=cache,target=/root/.cache/pip pip install -r dev-requirements.txt

# Copy files and add version to motd
COPY motd /etc/motd
COPY /assets/dimensionalascii.txt /etc/motd
COPY /docker/dev/bash.sh /root/.bash.sh
COPY /docker/dev/tmux.conf /root/.tmux.conf

Expand Down
67 changes: 0 additions & 67 deletions run.sh

This file was deleted.

Loading