Installation
This guide will help you set up AeraSync for development or usage.
Requirements
Backend Requirements: * Python 3.10+ * pip
Frontend Requirements: * Flutter 3.0+ * Dart SDK * Node.js 16+
Backend Installation
To install the backend dependencies:
cd backend
pip install -r requirements.txt
Frontend Installation
To install the frontend dependencies:
cd frontend
flutter pub get
Running the Application
Backend
Start the backend server:
cd backend
python -m api.main
Frontend
Start the frontend application:
cd frontend
flutter run -d chrome # For web
# Or
flutter run # For mobile emulator