From 551f5d943f161ed3201a0d23a1b13e32a0ece194 Mon Sep 17 00:00:00 2001 From: drjones Date: Wed, 20 May 2026 10:02:51 -0700 Subject: [PATCH] chore: import local project into Gitea --- .gitignore | 30 ++++++++++++++++++++++++++++++ README.md | 5 +++++ 2 files changed, 35 insertions(+) create mode 100644 .gitignore create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..81d430d --- /dev/null +++ b/.gitignore @@ -0,0 +1,30 @@ +# OS / tooling +.DS_Store +Thumbs.db + +# Editors +.cursor/ + +# Secrets +.env +.env.* +!.env.example +!.env.template + +# Python +__pycache__/ +*.py[cod] +.venv/ +venv/ + +# Node / frontend +node_modules/ +dist/ + +# Typical embedded / tooling noise +*.log + +# Builds (adjust per subtree if needed) +**/build/.ninja_deps +**/build/.ninja_log + diff --git a/README.md b/README.md new file mode 100644 index 0000000..c40acf7 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# autogpt + +Empty placeholder for AutoGPT or agent experiments. + +Populate with your fork/scripts, add `requirements.txt` or Node manifest as appropriate, and replace this README with project-specific onboarding.