{"id":31618034,"url":"https://github.com/sourabhsinha396/writelikeme","last_synced_at":"2026-04-11T04:32:09.706Z","repository":{"id":317886607,"uuid":"1069238123","full_name":"sourabhsinha396/writelikeme","owner":"sourabhsinha396","description":"A generative ai webapp built on FastAPI + Next JS that helps replicate our writing style.","archived":false,"fork":false,"pushed_at":"2025-10-03T16:10:59.000Z","size":320,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-03T18:29:00.828Z","etag":null,"topics":["docker","docker-compose","fastapi","hacktoberfest","nextjs","tesseract"],"latest_commit_sha":null,"homepage":"https://writelikeme.io/","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/sourabhsinha396.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-03T16:01:51.000Z","updated_at":"2025-10-03T16:13:58.000Z","dependencies_parsed_at":"2025-10-03T18:30:43.329Z","dependency_job_id":"6e28ab37-25bc-4a44-b5b2-348bc285dda8","html_url":"https://github.com/sourabhsinha396/writelikeme","commit_stats":null,"previous_names":["sourabhsinha396/writelikeme"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/sourabhsinha396/writelikeme","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sourabhsinha396%2Fwritelikeme","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sourabhsinha396%2Fwritelikeme/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sourabhsinha396%2Fwritelikeme/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sourabhsinha396%2Fwritelikeme/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sourabhsinha396","download_url":"https://codeload.github.com/sourabhsinha396/writelikeme/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sourabhsinha396%2Fwritelikeme/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31669114,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-10T17:19:37.612Z","status":"online","status_checked_at":"2026-04-11T02:00:05.776Z","response_time":54,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["docker","docker-compose","fastapi","hacktoberfest","nextjs","tesseract"],"created_at":"2025-10-06T13:45:01.886Z","updated_at":"2026-04-11T04:32:09.698Z","avatar_url":"https://github.com/sourabhsinha396.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# WriteLikeMe.io\n\nAn AI-powered writing style analyzer and content generator that learns your unique writing style and creates new content that matches it.\n\n![writelikeme-demo](assets/demo-image.png)\n\n## Features\n\n- **Writing Style Analysis**: Upload text samples (TXT, DOCX, PDF) or paste text to create unique writing profiles\n- **AI Content Generation**: Generate new content on any topic in your analyzed writing style\n- **Multiple Profiles**: Create and manage different writing profiles for various styles and purposes\n- **User Authentication**: Support for traditional login/signup and Google OAuth\n- **Anonymous Usage**: Try the service without creating an account\n- **Payment Plans**: Tiered subscription plans with different word limits\n- **Real-time Generation**: Stream generated content as it's being created\n- **Document Processing**: Advanced PDF text extraction with OCR fallback for scanned documents\n\n## Tech Stack\n\n### Backend\n- **FastAPI**: Modern Python web framework\n- **PostgreSQL**: Database\n- **SQLAlchemy**: ORM\n- **Alembic**: Database migrations\n- **Docker \u0026 Docker Compose**: Containerization\n- **LiteLLM**: LLM integration abstraction\n- **Langfuse**: LLM observability and monitoring\n- **PayPal SDK**: Payment processing\n- **Tesseract OCR**: Text extraction from images/scanned PDFs\n\n### Frontend\n- **Next.js 14**: React framework with App Router\n- **TypeScript**: Type safety\n- **Tailwind CSS**: Styling\n- **shadcn/ui**: UI component library\n- **Google Analytics**: Analytics\n\n### AI \u0026 NLP\n- **OpenAI API**: Content generation\n- **NLTK**: Natural language processing\n- **Custom Style Analyzer**: Proprietary writing style analysis\n\n## Prerequisites\n\n- Docker and Docker Compose\n- Node.js 18+ (for frontend development)\n- Python 3.9+ (if running backend without Docker)\n- Tesseract OCR installed on your system:\n  - Ubuntu/Debian: `sudo apt-get install tesseract-ocr`\n  - MacOS: `brew install tesseract`\n  - Windows: [Download installer](https://github.com/UB-Mannheim/tesseract/wiki)\n\n## Installation\n\n### Backend Setup\n\n1. **Clone the repository**\n   ```bash\n   git clone https://github.com/yourusername/writelikeme.git\n   cd writelikeme\n   ```\n\n2. **Navigate to backend directory**\n   ```bash\n   cd backend-writelikeme\n   ```\n\n3. **Configure environment variables**\n   ```bash\n   cp .env.sample .env\n   ```\n   \n   Edit `.env` and configure the variables\n\n4. **Start the backend with Docker**\n   ```bash\n   docker compose up --build\n   ```\n\n5. **Run database migrations**\n   ```bash\n   docker compose exec web alembic upgrade head\n   ```\n\n6. **Access the API documentation** (optional)\n   - Uncomment `docs_url=\"/docs\"` in `main.py`\n   - Visit: http://127.0.0.1:8000/docs\n\n### Frontend Setup\n\n1. **Navigate to frontend directory**\n   ```bash\n   cd frontend-writelikeme\n   ```\n\n2. **Configure environment variables**\n   ```bash\n   cp .env.sample .env\n   ```\n   \n   Edit `.env` if needed\n\n3. **Install dependencies**\n   ```bash\n   npm install\n   ```\n\n4. **Start the development server**\n   ```bash\n   npm run dev\n   ```\n\n5. **Access the application**\n   - Open http://localhost:3000 in your browser\n\n## Usage\n- Best try it at writelikeme.io\n\n\n\n### Admin Panel\n\nAccess the admin panel at: http://127.0.0.1:8000/admin\nConfigure admin credentials in your environment variables.\n\n## Contributing\n\nContributions are welcome! Please follow these steps:\n\n1. Fork the repository\n2. Create a feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'Add amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n## License\n\nThis project is open source and available under the [MIT License](LICENSE).\n\n## Acknowledgments\n\n- FastAPI and Next.js communities\n- All contributors and users of WriteLikeMe.io\n\n## Support\n\nFor issues, questions, or contributions, please:\n- Open an issue on GitHub\n- Visit [writelikeme.io](https://writelikeme.io)\n- Contact me via chatbot or mail. I am available at chatbot most of the time.\n\n\n---\n\nMade with 🧠 + some Vibecoding by Sourabh","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsourabhsinha396%2Fwritelikeme","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsourabhsinha396%2Fwritelikeme","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsourabhsinha396%2Fwritelikeme/lists"}