You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A full-stack portfolio and project hub for aetherwave — showcasing projects, interactive experiences, and personal branding. Built with a modern turborepo monorepo architecture.
# Clone the repository
git clone https://github.com/yourusername/aetherport.git
cd aetherport
# Start all services
docker-compose up --build
# Access the application# Frontend: http://localhost:3000# Backend: http://localhost:8000/api/v1/
Option 2: Local Development
Backend Setup
cd apps/api/backend
# Create virtual environment
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate# Install dependencies
pip install -r requirements.txt
# Set environment variables
cp .env.example .env # Create and configure .env# Run migrations
python manage.py migrate
# Start development server
python manage.py runserver
Frontend Setup
# From root directory
npm install
# Start development (uses Turborepo)
npm run dev
# Or just the web appcd apps/web
npm run dev
Environment Variables
Frontend (apps/web)
API_BASE_URL=http://localhost:8000/api/v1# Server-side API URLNEXT_PUBLIC_API_URL=http://localhost:8000/api/v1# Client-side API URL