Skip to content

creationsofm7/MOC-MyOwnCloud

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

TimeReel

A monorepo project with Django backend and Remix (Vite) frontend.

Project Structure

TimeReel/
├── backend/         # Django backend
│   └── core/       # Django project settings
├── frontend/       # React + Vite frontend
└── package.json    # Root package.json for managing the monorepo

Setup Instructions

  1. Backend Setup

    cd backend
    # Activate virtual environment
    .\venv\Scripts\Activate.ps1
    # Install dependencies if not already installed
    pip install -r requirements.txt
    # Run migrations
    python manage.py migrate
  2. Frontend Setup

    cd frontend
    npm install
  3. Running the Development Servers

    # Run backend (from backend directory with venv activated)
    python manage.py runserver
    
    # In another terminal, run frontend (from frontend directory)
    npm run dev

Development

Technologies Used

  • Backend:

    • Django
    • Django REST Framework
    • Django CORS Headers
  • Frontend:

    • React
    • TypeScript
    • Vite

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors