Add replit configuration.
This commit is contained in:
AI Christianson 2024-12-26 12:21:45 -05:00 committed by GitHub
parent b218bebeec
commit 298c9d4ab7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 40 additions and 0 deletions

27
.replit Normal file
View File

@ -0,0 +1,27 @@
modules = ["python-3.10:v18-20230807-322e88b"]
run = "ra-aid --chat"
[nix]
channel = "stable-24_05"
[deployment]
run = ["sh", "-c", "ra-aid --chat"]
[env]
VIRTUAL_ENV = "/home/runner/${REPL_SLUG}/venv"
PATH = "${VIRTUAL_ENV}/bin:/home/runner/${REPL_SLUG}/.config/npm/node_global/bin:${PATH}"
PYTHONPATH = "$PYTHONPATH:/home/runner/${REPL_SLUG}"
# Package installation
[packager]
language = "python3"
ignoredPackages = ["unit_tests"]
[packager.features]
enabledForHosting = false
packageSearch = true
guessImports = true
[unitTest]
language = "python3"

13
replit.nix Normal file
View File

@ -0,0 +1,13 @@
{ pkgs }: {
deps = [
pkgs.awsebcli
pkgs.bash
pkgs.python310
pkgs.poetry
pkgs.nodePackages.npm
pkgs.bashInteractive
pkgs.man
pkgs.git
];
}