{"id":21851503,"url":"https://github.com/livewithcodeankit/document-manager","last_synced_at":"2026-04-13T04:06:05.047Z","repository":{"id":264879239,"uuid":"894524443","full_name":"LiveWithCodeAnkit/Document-Manager","owner":"LiveWithCodeAnkit","description":"This repository contains a full stack application with a FastAPI backend and a Vite + React + TypeScript frontend.","archived":false,"fork":false,"pushed_at":"2024-12-05T07:37:49.000Z","size":83,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-26T13:13:39.282Z","etag":null,"topics":["crud-api","crud-application","fastapi","postgrees","python","reactjs","sqlarchemy","supabase","tailwindcss","tiptap-editor","typescript","vite"],"latest_commit_sha":null,"homepage":"https://document-manager-khaki.vercel.app","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/LiveWithCodeAnkit.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-11-26T14:03:51.000Z","updated_at":"2024-12-05T07:37:52.000Z","dependencies_parsed_at":"2024-11-26T16:26:11.931Z","dependency_job_id":"b0cd30a8-d2bc-454e-bde5-e7fa742056c8","html_url":"https://github.com/LiveWithCodeAnkit/Document-Manager","commit_stats":null,"previous_names":["livewithcodeankit/document-manager"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LiveWithCodeAnkit%2FDocument-Manager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LiveWithCodeAnkit%2FDocument-Manager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LiveWithCodeAnkit%2FDocument-Manager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LiveWithCodeAnkit%2FDocument-Manager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LiveWithCodeAnkit","download_url":"https://codeload.github.com/LiveWithCodeAnkit/Document-Manager/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244844536,"owners_count":20519793,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["crud-api","crud-application","fastapi","postgrees","python","reactjs","sqlarchemy","supabase","tailwindcss","tiptap-editor","typescript","vite"],"created_at":"2024-11-28T01:08:24.804Z","updated_at":"2026-04-13T04:06:05.005Z","avatar_url":"https://github.com/LiveWithCodeAnkit.png","language":"TypeScript","readme":"# Full Stack Application\n\nThis repository contains a full stack application with a **FastAPI** backend and a **Vite + React + TypeScript** frontend.\n\n## Table of Contents\n\n1. [Overview](#overview)\n2. [Tech Stack](#tech-stack)\n3. [Getting Started](#getting-started)\n4. [Project Structure](#project-structure)\n5. [Contributing](#contributing)\n6. [License](#license)\n\n## Overview\n\nThe application is designed to provide a seamless integration between a FastAPI backend and a React frontend. The backend uses SQLAlchemy for ORM and Supabase (PostgreSQL) as the database, while the frontend is built with Vite, React, and TypeScript.\n\n## Tech Stack\n\n### Backend\n\n- **FastAPI** - Modern, fast (high-performance) web framework for building APIs with Python 3.8+\n- **SQLAlchemy** - SQL toolkit and ORM for Python\n- **Supabase** - PostgreSQL database as a service\n\n### Frontend\n\n- **Vite** - Next-generation, fast build tool for React apps\n- **React** - JavaScript library for building user interfaces\n- **TypeScript** - JavaScript with type safety\n- **Axios** - Promise-based HTTP client for making API requests\n\n## Getting Started\n\n### Prerequisites\n\n- **Node.js** and **npm** for the frontend\n- **Python 3.8+** and **pip** for the backend\n- **PostgreSQL** (Supabase Cloud)\n\n### Setup Instructions\n\n#### Backend\n\n1. **Clone the Repository**\n\n   ```bash\n   git clone https://github.com/yourusername/yourprojectname.git\n   cd yourprojectname/Backend\n   ```\n\n2. **Set Up Environment Variables**\n\n   Create a `.env` file and add your `DATABASE_URL`:\n\n   ```\n   DATABASE_URL=postgresql://\u003cusername\u003e:\u003cpassword\u003e@\u003chost\u003e:\u003cport\u003e/\u003cdatabase\u003e\n   ```\n\n3. **Create a Virtual Environment**\n\n   ```bash\n   python -m venv venv\n   ```\n\n   Activate the virtual environment:\n\n   - For Windows:\n\n     ```bash\n     venv\\Scripts\\activate\n     ```\n\n   - For macOS/Linux:\n\n     ```bash\n     source venv/bin/activate\n     ```\n\n4. **Install Dependencies**\n\n   ```bash\n   pip install -r requirements.txt\n   ```\n\n5. **Initialize the Database**\n\n   ```bash\n   python init_db.py\n   ```\n\n6. **Run the Backend Server**\n\n   ```bash\n   uvicorn app.main:app --reload\n   ```\n\n#### Frontend\n\n1. **Navigate to the Frontend Directory**\n\n   ```bash\n   cd ../Frontend\n   ```\n\n2. **Install Dependencies**\n\n   ```bash\n   npm install\n   ```\n\n3. **Set Up Environment Variables**\n\n   Copy the `.env.example` file to `.env` and configure the backend server URL.\n\n4. **Run the Frontend Development Server**\n\n   ```bash\n   npm run dev\n   ```\n\n## Project Structure\n\n- **Backend/**: Contains the FastAPI backend code.\n- **Frontend/**: Contains the Vite + React + TypeScript frontend code.\n\n## Contributing\n\nContributions are welcome! Please fork the repository and submit a pull request for any improvements or bug fixes.\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flivewithcodeankit%2Fdocument-manager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flivewithcodeankit%2Fdocument-manager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flivewithcodeankit%2Fdocument-manager/lists"}