forked from elizaOS/eliza
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit f20c86c
Showing
3,442 changed files
with
507,732 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
ARG NODE_VER=23.5.0 | ||
ARG BASE_IMAGE=node:${NODE_VER} | ||
FROM $BASE_IMAGE | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
# Install pnpm globally and install necessary build tools | ||
RUN apt-get update \ | ||
&& apt-get install -y \ | ||
git \ | ||
python3 \ | ||
make \ | ||
g++ \ | ||
nano \ | ||
vim \ | ||
&& apt-get clean \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
ARG PNPM_VER=9.15.2 | ||
RUN npm install -g pnpm@${PNPM_VER} | ||
|
||
# Set Python 3 as the default python | ||
RUN ln -s /usr/bin/python3 /usr/bin/python | ||
ENV DEBIAN_FRONTEND=dialog |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
// See https://aka.ms/vscode-remote/devcontainer.json for format details. | ||
{ | ||
"name": "elizaos-dev", | ||
"dockerFile": "Dockerfile", | ||
"build": { | ||
"args": { | ||
"NODE_VER": "23.5.0", | ||
"PNPM_VER": "9.15.2" | ||
} | ||
}, | ||
"privileged": true, | ||
"runArgs": [ | ||
"-p=3000:3000", // Add port for server api | ||
"-p=5173:5173", // Add port for client | ||
//"--volume=/usr/lib/wsl:/usr/lib/wsl", // uncomment for WSL | ||
//"--volume=/mnt/wslg:/mnt/wslg", // uncomment for WSL | ||
"--gpus=all", // ! uncomment for vGPU | ||
//"--device=/dev/dxg", // uncomment this for vGPU under WSL | ||
"--device=/dev/dri" | ||
], | ||
"containerEnv": { | ||
//"MESA_D3D12_DEFAULT_ADAPTER_NAME": "NVIDIA", // uncomment for WSL | ||
//"LD_LIBRARY_PATH": "/usr/lib/wsl/lib" // uncomment for WSL | ||
}, | ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"vscode.json-language-features", | ||
"vscode.css-language-features", | ||
// "foxundermoon.shell-format", | ||
// "dbaeumer.vscode-eslint", | ||
// "esbenp.prettier-vscode" | ||
"ms-python.python" | ||
] | ||
} | ||
}, | ||
"features": {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Ignore node_modules from the build context | ||
node_modules | ||
|
||
# Ignore logs and temporary files | ||
*.log | ||
*.tmp | ||
.DS_Store | ||
|
||
# Ignore Git files and metadata | ||
.gitignore | ||
|
||
# Ignore IDE and editor config files | ||
.vscode | ||
.idea | ||
*.swp | ||
|
||
# Ignore build artifacts from the host | ||
dist | ||
build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 4 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false |
Oops, something went wrong.