Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
91 changes: 91 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
# Node.js
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*
package-lock.json
yarn.lock
pnpm-lock.yaml
.npm
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
dist/
build/
*.tgz
.env
.env.local
.env.*.local

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
env/
venv/
ENV/
env.bak/
venv.bak/
pip-log.txt
pip-delete-this-directory.txt
.pytest_cache/
.coverage
htmlcov/
*.egg-info/
dist/
build/
*.egg
.mypy_cache/
.dmypy.json
dmypy.json
.pytype/
*.pyo
*.pyd

# Docker
.dockerignore
docker-compose.override.yml
*.log

# IDE & Editor
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
*.sublime-project
*.sublime-workspace
.project
.settings/
.classpath

# OS
Thumbs.db
.DS_Store
*.bak
*.tmp

# Logs
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Build outputs
dist/
build/
out/
target/

# Temporary files
tmp/
temp/
.cache/
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,14 @@
# Project-Aura
# Project-Aura

## Status: Under Restructuring

This repository is currently being restructured to support a new monorepo architecture.

The legacy Electron/webpack scaffold has been removed, and the project is being reorganized with a new toolchain supporting:
- Node.js services
- Python components
- Docker containerization

**Note:** The codebase is in transition. New structure and implementation details will be added as per the updated specification.

Please stay tuned for updates.
213 changes: 0 additions & 213 deletions src/renderer/App.css

This file was deleted.

Loading