{"id":20993288,"url":"https://github.com/rithick574/syncworks-autovert","last_synced_at":"2026-04-24T17:33:30.532Z","repository":{"id":262609748,"uuid":"887347954","full_name":"Rithick574/syncworks-autovert","owner":"Rithick574","description":null,"archived":false,"fork":false,"pushed_at":"2024-11-20T10:11:27.000Z","size":441,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-27T03:40:50.391Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://autovert.vercel.app","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Rithick574.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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":"2024-11-12T15:35:09.000Z","updated_at":"2024-11-20T10:11:30.000Z","dependencies_parsed_at":"2024-11-13T11:19:09.117Z","dependency_job_id":"cc16efd9-e598-4477-adc1-f2b66ea3ec82","html_url":"https://github.com/Rithick574/syncworks-autovert","commit_stats":null,"previous_names":["rithick574/syncworks-autovert"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Rithick574/syncworks-autovert","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rithick574%2Fsyncworks-autovert","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rithick574%2Fsyncworks-autovert/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rithick574%2Fsyncworks-autovert/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rithick574%2Fsyncworks-autovert/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Rithick574","download_url":"https://codeload.github.com/Rithick574/syncworks-autovert/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rithick574%2Fsyncworks-autovert/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32234716,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-24T13:21:15.438Z","status":"ssl_error","status_checked_at":"2026-04-24T13:21:15.005Z","response_time":64,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2024-11-19T07:14:27.104Z","updated_at":"2026-04-24T17:33:30.527Z","avatar_url":"https://github.com/Rithick574.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"Here's a **README.md** template for your repository containing both the frontend and backend projects. Update the placeholders as necessary to fit your project specifics.\n\n---\n\n# Autovert Machine Task\n\nThis repository contains the **frontend** and **backend** codebases for the Autovert Machine Task, which provides a seamless user and admin interface for managing tasks. The frontend is built using modern technologies like React and TailwindCSS, while the backend is implemented in Node.js, Express, and MongoDB.\n---\n\n## Project Overview\n\nThe Autovert project includes:\n\n- A user-friendly admin panel to manage workflows and tasks.\n- API endpoints for managing workflows and performing CRUD operations.\n\n---\n\n## Features\n\n### Frontend:\n- Built with React and TypeScript.\n- Styled with TailwindCSS.\n- Responsive and accessible design.\n- Vite for a fast development experience.\n\n### Backend:\n- RESTful APIs with Express.js.\n- MongoDB as the database.\n- Dockerized for seamless deployment.\n- Environment-specific configurations.\n\n---\n\n## Folder Structure\n\n```\nautovert/\n├── client/                # Frontend codebase\n│   ├── src/               # React application source\n│   ├── public/            # Static files\n│   ├── tailwind.config.js # TailwindCSS configuration\n│   └── package.json       # Frontend dependencies\n├── server/                # Backend codebase\n│   ├── src/               # Backend source code\n│   ├── dist/              # Compiled backend files\n│   ├── Dockerfile         # Docker configuration\n│   └── package.json       # Backend dependencies\n└── README.md              # Project documentation\n```\n\n---\n\n## Getting Started\n\n### Prerequisites\n- Node.js (\u003e=16)\n- MongoDB\n- pnpm (preferred package manager)\n\n### Clone the Repository\n```bash\ngit clone https://github.com/Rithick574/syncworks-autovert.git\ncd syncworks-autovert\n```\n\n---\n\n## Frontend\n\n### Setup\n1. Navigate to the `client` directory:\n   ```bash\n   cd client\n   ```\n\n2. Install dependencies:\n   ```bash\n   pnpm install\n   ```\n\n3. Configure environment variables:\n   - Add your `.env` file in the `client/` directory with the following variables:\n     ```\n     VITE_API_BASE_URL=\u003cYour Backend API URL\u003e\n     ```\n\n4. Run the development server:\n   ```bash\n   pnpm dev\n   ```\n\n### Build for Production\n```bash\npnpm build\n```\n\n---\n\n## Backend\n\n### Setup\n1. Navigate to the `server` directory:\n   ```bash\n   cd server\n   ```\n\n2. Install dependencies:\n   ```bash\n   pnpm install\n   ```\n\n3. Configure environment variables:\n   - Add your `.env` file in the `server/` directory with the following variables:\n     ```\n     PORT=5000\n     DATABASE_URL=\u003cYour MongoDB Connection URL\u003e\n     ```\n\n4. Run the server:\n   ```bash\n   pnpm start\n   ```\n\n### Run with Docker\n1. Build the Docker image:\n   ```bash\n   docker build -t autovert-backend .\n   ```\n\n2. Run the container:\n   ```bash\n   docker run -p 5000:5000 --env-file .env autovert-backend\n   ```\n\n---\n\n## API Documentation\n\nThe backend API documentation is available via Postman:\n\n- **API Documentation Link:** [Postman Documentation](https://documenter.getpostman.com/view/29232780/2sAY55ZdEw)\n\n---\n\n## Deployment\n\n- **Frontend**: Hosted on [Vercel](https://autovert.vercel.app/)\n- **Backend**: Hosted on AWS EC2.\n\n---\n\n## License\n\nThis project is licensed under the MIT License. See the `LICENSE` file for more details.\n\n---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frithick574%2Fsyncworks-autovert","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frithick574%2Fsyncworks-autovert","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frithick574%2Fsyncworks-autovert/lists"}