commite8b53dc953Author: Patedam <pgillen.pro@gmail.com> Date: Tue Mar 3 01:15:17 2026 -0500 Updated backend to make sure it works properly with frontend. Fixed one frontend issue (free heap was not correctly named) commit3428808f83Author: Patedam <pgillen.pro@gmail.com> Date: Tue Mar 3 00:36:01 2026 -0500 Fixing various build errors. Activated minimal build commit59364ac22dAuthor: Patedam <pgillen.pro@gmail.com> Date: Tue Mar 3 00:03:24 2026 -0500 Added info and reboot api into the backend. Created the basics for a backend server. commit37291557ebAuthor: Patedam <pgillen.pro@gmail.com> Date: Mon Mar 2 23:05:10 2026 -0500 feat: Add API endpoints for system reboot and retrieving system information. commita010b0c352Author: Patedam <pgillen.pro@gmail.com> Date: Mon Mar 2 22:56:13 2026 -0500 Added AgentTasks into git ignore we will use it to store current tasks so we can createnew contexts chat when its too big commit75bab78137Author: Patedam <pgillen.pro@gmail.com> Date: Mon Mar 2 22:42:29 2026 -0500 feat: Initialize ESP-IDF project with core build configuration, component dependencies, and web frontend deployment. commitbba4c63f93Author: Patedam <pgillen.pro@gmail.com> Date: Mon Mar 2 22:21:52 2026 -0500 docs: Add backend architecture documentation for the ESP32-S3 provider.
96 lines
1.3 KiB
Plaintext
96 lines
1.3 KiB
Plaintext
@ -0,0 +1,78 @@
|
|
# macOS
|
|
.DS_Store
|
|
.AppleDouble
|
|
.LSOverride
|
|
|
|
# Directory metadata
|
|
.directory
|
|
|
|
# Temporary files
|
|
*~
|
|
*.swp
|
|
*.swo
|
|
*.bak
|
|
*.tmp
|
|
|
|
# Log files
|
|
*.log
|
|
|
|
# Build artifacts and directories
|
|
**/build/
|
|
build/
|
|
*.o
|
|
*.a
|
|
*.out
|
|
*.exe # For any host-side utilities compiled on Windows
|
|
|
|
# ESP-IDF specific build outputs
|
|
*.bin
|
|
*.elf
|
|
*.map
|
|
flasher_args.json # Generated in build directory
|
|
sdkconfig.old
|
|
sdkconfig
|
|
|
|
# ESP-IDF dependencies
|
|
# For older versions or manual component management
|
|
/components/.idf/
|
|
**/components/.idf/
|
|
# For modern ESP-IDF component manager
|
|
managed_components/
|
|
# If ESP-IDF tools are installed/referenced locally to the project
|
|
.espressif/
|
|
|
|
# CMake generated files
|
|
CMakeCache.txt
|
|
CMakeFiles/
|
|
cmake_install.cmake
|
|
install_manifest.txt
|
|
CTestTestfile.cmake
|
|
|
|
# Python environment files
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
__pycache__/
|
|
*.egg-info/
|
|
dist/
|
|
|
|
# Virtual environment folders
|
|
venv/
|
|
.venv/
|
|
env/
|
|
|
|
# Language Servers
|
|
**/.clangd
|
|
**/.ccls-cache/
|
|
**/compile_commands.json
|
|
|
|
# Windows specific
|
|
Thumbs.db
|
|
ehthumbs.db
|
|
Desktop.ini
|
|
|
|
# User-specific configuration files
|
|
*.user
|
|
*.workspace # General workspace files, can be from various tools
|
|
*.suo # Visual Studio Solution User Options
|
|
*.sln.docstates # Visual Studio
|
|
|
|
|
|
**/.cache/
|
|
**/.devcontainer/
|
|
**/.vscode/
|
|
/Server
|
|
|
|
external/*
|
|
*.vsix
|
|
|
|
# Frontend
|
|
**/node_modules/
|
|
**/frontend/dist/
|
|
|
|
# Agent Tasks
|
|
Provider/AgentTasks/
|