mirror of
https://github.com/reworkd/AgentGPT.git
synced 2026-03-25 06:26:07 +00:00
* Added an interface for configuration, currently trying to get the api key entry part to return to itself when an invalid key is entered. I will add documentation soon * Created a setup script and a docker-compose route to make it easier for beginners. Currently only docker-compose is working, no errors. I will need to do more work on docker and local build tomorrow * Forgot to uncomment npm install from testing * changed line 'prepare': 'husky install' to 'prepare': 'npx husky install' because as of husky 5, husky commands must be run via npx * changed line "prepare": "husky install" to "prepare": "npx husky install" because as of husky 5, husky commands must be run via npx * working * input.mjs broken, moving to a different host for further troubleshooting * Changes Made - Removed setup.sh and replaced with init.sh and setup.mjs. - init.sh is a simple script to install necessary packages and prompt the user to set up the environment using setup.mjs. - setup.mjs is a comprehensive script that sets up the environment for the AgentGPT project. This script interacts with the user to collect necessary configuration details like the OpenAI API key, Docker/Node setup preference, and more. It generates the necessary environment variables, handles Docker setup if chosen, and also has logic to handle and retry on errors. * Updated readme to reflect changes * removed my settings.json * 💬 Update error messaging * 💬 Check if ENV exists * 💬 Validate against existing ENV * 💬 Update finalization commands * 💬 Fix schema * 💬 Fix execution * 💬 Revert next * 💬 Revert main * 💬 Add package json * 💬 Add package json * 💬 Manual * 🔌 Electrifying devX --------- Co-authored-by: Asim Shrestha <asim.shrestha@hotmail.com> Co-authored-by: jpducky <34105363+JPDucky@users.noreply.github.com~> Co-authored-by: awtkns <32209255+awtkns@users.noreply.github.com>
25 lines
283 B
Plaintext
25 lines
283 B
Plaintext
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
|
|
|
# dependencies
|
|
/node_modules
|
|
/.pnp
|
|
.pnp.js
|
|
|
|
# testing
|
|
/coverage
|
|
|
|
# production
|
|
/build
|
|
|
|
# misc
|
|
.DS_Store
|
|
*.pem
|
|
|
|
# debug
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-debug.log*
|
|
|
|
.eslintcache
|