description stringclasses 6
values | requirements listlengths 3 5 | framework stringclasses 7
values | language stringclasses 2
values | code_files dict | project_structure dict | metadata dict |
|---|---|---|---|---|---|---|
🚀🎉📚 Boilerplate and Starter for Serverless framework, ExpressJS, TypeScript, Prisma and MongoDB ⚡️ Made with developer experience first: Serverless framework + Live reload + Offline support + ExpressJS + TypeScript + ESLint + Prettier + Husky + Commitlint + Lint-Staged + Jest + Dotenv + esbuild + VSCode | [
"Uses @prisma/client",
"Uses express",
"Uses express-async-errors",
"Uses helmet",
"Uses serverless-http"
] | koa | javascript | {
"README.md": "# Serverless Boilerplate with Serverless Framework 3, ExpressJS, TypeScript, Prisma and MongoDB [](https://twitter.com/ixartz)\n\n<p align=\"center\">\n <a href=\"https://creativedesig... | {
"directories": [
".github",
".husky",
".vscode",
"prisma",
"scripts",
"src"
],
"files": [
".env",
".env.development",
".eslintignore",
".eslintrc",
".gitignore",
"CHANGELOG.md",
"LICENSE",
"README.md",
"commitlint.config.js",
"jest.config.js",
... | {
"created_at": "2021-02-24T17:54:29Z",
"forks": 86,
"stars": 568,
"synthetic": null,
"updated_at": "2025-08-23T09:36:34Z",
"url": "https://github.com/ixartz/Serverless-Boilerplate-Express-TypeScript"
} |
API for iCCUT build in Python with Flask. | [
"Uses Flask",
"Uses Flask-SQLAlchemy",
"Uses Flask-Script",
"Uses BeautifulSoup"
] | flask | python | {
"README.md": "#iCCUT-Backend\n",
"app.js": null,
"config.py": "__author__ = 'Maru'\n\nimport os\n\ndbhost = 'localhost:3306'\ndbuser = 'root'\ndbpass = ''\ndbname = 'iCCUT'\nDB_URI = 'mysql://' + dbuser + ':' + dbpass + '@' + dbhost + '/' +dbname\n\nbasedir = os.path.abspath(os.path.dirname(__file__))\n# SQLALC... | {
"directories": [
".idea",
"app"
],
"files": [
".DS_Store",
"README.md",
"Spider.py",
"app.db",
"config.py",
"config.pyc",
"manage.py",
"requirements.txt"
],
"has_docs": true,
"has_tests": false,
"total_files": 8
} | {
"created_at": "2015-12-04T04:29:58Z",
"forks": 14,
"stars": 45,
"synthetic": null,
"updated_at": "2021-03-10T08:50:23Z",
"url": "https://github.com/Maru-zhang/iCCUT-Backend-Flask"
} |
E-commerce backend API | [
"Product catalog",
"Shopping cart",
"Order processing",
"Payment integration"
] | fastapi | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": "from fastapi import FastAPI, HTTPException\nfrom pydantic import BaseModel\nfrom typing import List, Optional\n\napp = FastAPI()\n\nclass Item(BaseModel):\n id: Optional[int] = None\n name: str\n description: str\n\n@app.get(\"/\")\nas... | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
REST API for user management | [
"User registration",
"User authentication",
"Profile management"
] | express | javascript | {
"README.md": null,
"app.js": "const express = require('express');\nconst mongoose = require('mongoose');\nconst app = express();\n\n// Middleware\napp.use(express.json());\n\n// Routes\napp.get('/health', (req, res) => {\n res.json({ status: 'OK' });\n});\n\n// Start server\nconst PORT = process.env.PORT || 30... | {
"directories": [
"routes",
"controllers",
"middleware",
"models"
],
"files": [
"package.json",
"app.js",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Blog platform backend | [
"Article management",
"User comments",
"Category system"
] | django | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
E-commerce backend API | [
"Product catalog",
"Shopping cart",
"Order processing",
"Payment integration"
] | django | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
E-commerce backend API | [
"Product catalog",
"Shopping cart",
"Order processing",
"Payment integration"
] | fastapi | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": "from fastapi import FastAPI, HTTPException\nfrom pydantic import BaseModel\nfrom typing import List, Optional\n\napp = FastAPI()\n\nclass Item(BaseModel):\n id: Optional[int] = None\n name: str\n description: str\n\n@app.get(\"/\")\nas... | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
E-commerce backend API | [
"Product catalog",
"Shopping cart",
"Order processing",
"Payment integration"
] | fastapi | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": "from fastapi import FastAPI, HTTPException\nfrom pydantic import BaseModel\nfrom typing import List, Optional\n\napp = FastAPI()\n\nclass Item(BaseModel):\n id: Optional[int] = None\n name: str\n description: str\n\n@app.get(\"/\")\nas... | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
E-commerce backend API | [
"Product catalog",
"Shopping cart",
"Order processing",
"Payment integration"
] | fastapi | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": "from fastapi import FastAPI, HTTPException\nfrom pydantic import BaseModel\nfrom typing import List, Optional\n\napp = FastAPI()\n\nclass Item(BaseModel):\n id: Optional[int] = None\n name: str\n description: str\n\n@app.get(\"/\")\nas... | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Blog platform backend | [
"Article management",
"User comments",
"Category system"
] | express | javascript | {
"README.md": null,
"app.js": "const express = require('express');\nconst mongoose = require('mongoose');\nconst app = express();\n\n// Middleware\napp.use(express.json());\n\n// Routes\napp.get('/health', (req, res) => {\n res.json({ status: 'OK' });\n});\n\n// Start server\nconst PORT = process.env.PORT || 30... | {
"directories": [
"routes",
"controllers",
"middleware",
"models"
],
"files": [
"package.json",
"app.js",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
E-commerce backend API | [
"Product catalog",
"Shopping cart",
"Order processing",
"Payment integration"
] | django | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Blog platform backend | [
"Article management",
"User comments",
"Category system"
] | fastapi | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": "from fastapi import FastAPI, HTTPException\nfrom pydantic import BaseModel\nfrom typing import List, Optional\n\napp = FastAPI()\n\nclass Item(BaseModel):\n id: Optional[int] = None\n name: str\n description: str\n\n@app.get(\"/\")\nas... | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
E-commerce backend API | [
"Product catalog",
"Shopping cart",
"Order processing",
"Payment integration"
] | fastapi | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": "from fastapi import FastAPI, HTTPException\nfrom pydantic import BaseModel\nfrom typing import List, Optional\n\napp = FastAPI()\n\nclass Item(BaseModel):\n id: Optional[int] = None\n name: str\n description: str\n\n@app.get(\"/\")\nas... | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Blog platform backend | [
"Article management",
"User comments",
"Category system"
] | express | javascript | {
"README.md": null,
"app.js": "const express = require('express');\nconst mongoose = require('mongoose');\nconst app = express();\n\n// Middleware\napp.use(express.json());\n\n// Routes\napp.get('/health', (req, res) => {\n res.json({ status: 'OK' });\n});\n\n// Start server\nconst PORT = process.env.PORT || 30... | {
"directories": [
"routes",
"controllers",
"middleware",
"models"
],
"files": [
"package.json",
"app.js",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Task management system | [
"Task CRUD operations",
"User assignments",
"Status tracking"
] | flask | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Blog platform backend | [
"Article management",
"User comments",
"Category system"
] | fastapi | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": "from fastapi import FastAPI, HTTPException\nfrom pydantic import BaseModel\nfrom typing import List, Optional\n\napp = FastAPI()\n\nclass Item(BaseModel):\n id: Optional[int] = None\n name: str\n description: str\n\n@app.get(\"/\")\nas... | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Blog platform backend | [
"Article management",
"User comments",
"Category system"
] | express | javascript | {
"README.md": null,
"app.js": "const express = require('express');\nconst mongoose = require('mongoose');\nconst app = express();\n\n// Middleware\napp.use(express.json());\n\n// Routes\napp.get('/health', (req, res) => {\n res.json({ status: 'OK' });\n});\n\n// Start server\nconst PORT = process.env.PORT || 30... | {
"directories": [
"routes",
"controllers",
"middleware",
"models"
],
"files": [
"package.json",
"app.js",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Blog platform backend | [
"Article management",
"User comments",
"Category system"
] | fastapi | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": "from fastapi import FastAPI, HTTPException\nfrom pydantic import BaseModel\nfrom typing import List, Optional\n\napp = FastAPI()\n\nclass Item(BaseModel):\n id: Optional[int] = None\n name: str\n description: str\n\n@app.get(\"/\")\nas... | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
E-commerce backend API | [
"Product catalog",
"Shopping cart",
"Order processing",
"Payment integration"
] | django | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
REST API for user management | [
"User registration",
"User authentication",
"Profile management"
] | express | javascript | {
"README.md": null,
"app.js": "const express = require('express');\nconst mongoose = require('mongoose');\nconst app = express();\n\n// Middleware\napp.use(express.json());\n\n// Routes\napp.get('/health', (req, res) => {\n res.json({ status: 'OK' });\n});\n\n// Start server\nconst PORT = process.env.PORT || 30... | {
"directories": [
"routes",
"controllers",
"middleware",
"models"
],
"files": [
"package.json",
"app.js",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
REST API for user management | [
"User registration",
"User authentication",
"Profile management"
] | express | javascript | {
"README.md": null,
"app.js": "const express = require('express');\nconst mongoose = require('mongoose');\nconst app = express();\n\n// Middleware\napp.use(express.json());\n\n// Routes\napp.get('/health', (req, res) => {\n res.json({ status: 'OK' });\n});\n\n// Start server\nconst PORT = process.env.PORT || 30... | {
"directories": [
"routes",
"controllers",
"middleware",
"models"
],
"files": [
"package.json",
"app.js",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Blog platform backend | [
"Article management",
"User comments",
"Category system"
] | django | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
E-commerce backend API | [
"Product catalog",
"Shopping cart",
"Order processing",
"Payment integration"
] | fastapi | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": "from fastapi import FastAPI, HTTPException\nfrom pydantic import BaseModel\nfrom typing import List, Optional\n\napp = FastAPI()\n\nclass Item(BaseModel):\n id: Optional[int] = None\n name: str\n description: str\n\n@app.get(\"/\")\nas... | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Task management system | [
"Task CRUD operations",
"User assignments",
"Status tracking"
] | flask | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
REST API for user management | [
"User registration",
"User authentication",
"Profile management"
] | express | javascript | {
"README.md": null,
"app.js": "const express = require('express');\nconst mongoose = require('mongoose');\nconst app = express();\n\n// Middleware\napp.use(express.json());\n\n// Routes\napp.get('/health', (req, res) => {\n res.json({ status: 'OK' });\n});\n\n// Start server\nconst PORT = process.env.PORT || 30... | {
"directories": [
"routes",
"controllers",
"middleware",
"models"
],
"files": [
"package.json",
"app.js",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
E-commerce backend API | [
"Product catalog",
"Shopping cart",
"Order processing",
"Payment integration"
] | django | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Task management system | [
"Task CRUD operations",
"User assignments",
"Status tracking"
] | flask | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Task management system | [
"Task CRUD operations",
"User assignments",
"Status tracking"
] | express | javascript | {
"README.md": null,
"app.js": "const express = require('express');\nconst mongoose = require('mongoose');\nconst app = express();\n\n// Middleware\napp.use(express.json());\n\n// Routes\napp.get('/health', (req, res) => {\n res.json({ status: 'OK' });\n});\n\n// Start server\nconst PORT = process.env.PORT || 30... | {
"directories": [
"routes",
"controllers",
"middleware",
"models"
],
"files": [
"package.json",
"app.js",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Blog platform backend | [
"Article management",
"User comments",
"Category system"
] | fastapi | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": "from fastapi import FastAPI, HTTPException\nfrom pydantic import BaseModel\nfrom typing import List, Optional\n\napp = FastAPI()\n\nclass Item(BaseModel):\n id: Optional[int] = None\n name: str\n description: str\n\n@app.get(\"/\")\nas... | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Blog platform backend | [
"Article management",
"User comments",
"Category system"
] | fastapi | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": "from fastapi import FastAPI, HTTPException\nfrom pydantic import BaseModel\nfrom typing import List, Optional\n\napp = FastAPI()\n\nclass Item(BaseModel):\n id: Optional[int] = None\n name: str\n description: str\n\n@app.get(\"/\")\nas... | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Blog platform backend | [
"Article management",
"User comments",
"Category system"
] | express | javascript | {
"README.md": null,
"app.js": "const express = require('express');\nconst mongoose = require('mongoose');\nconst app = express();\n\n// Middleware\napp.use(express.json());\n\n// Routes\napp.get('/health', (req, res) => {\n res.json({ status: 'OK' });\n});\n\n// Start server\nconst PORT = process.env.PORT || 30... | {
"directories": [
"routes",
"controllers",
"middleware",
"models"
],
"files": [
"package.json",
"app.js",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
REST API for user management | [
"User registration",
"User authentication",
"Profile management"
] | fastapi | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": "from fastapi import FastAPI, HTTPException\nfrom pydantic import BaseModel\nfrom typing import List, Optional\n\napp = FastAPI()\n\nclass Item(BaseModel):\n id: Optional[int] = None\n name: str\n description: str\n\n@app.get(\"/\")\nas... | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Blog platform backend | [
"Article management",
"User comments",
"Category system"
] | express | javascript | {
"README.md": null,
"app.js": "const express = require('express');\nconst mongoose = require('mongoose');\nconst app = express();\n\n// Middleware\napp.use(express.json());\n\n// Routes\napp.get('/health', (req, res) => {\n res.json({ status: 'OK' });\n});\n\n// Start server\nconst PORT = process.env.PORT || 30... | {
"directories": [
"routes",
"controllers",
"middleware",
"models"
],
"files": [
"package.json",
"app.js",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
E-commerce backend API | [
"Product catalog",
"Shopping cart",
"Order processing",
"Payment integration"
] | nestjs | javascript | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"routes",
"controllers",
"middleware",
"models"
],
"files": [
"package.json",
"app.js",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
REST API for user management | [
"User registration",
"User authentication",
"Profile management"
] | express | javascript | {
"README.md": null,
"app.js": "const express = require('express');\nconst mongoose = require('mongoose');\nconst app = express();\n\n// Middleware\napp.use(express.json());\n\n// Routes\napp.get('/health', (req, res) => {\n res.json({ status: 'OK' });\n});\n\n// Start server\nconst PORT = process.env.PORT || 30... | {
"directories": [
"routes",
"controllers",
"middleware",
"models"
],
"files": [
"package.json",
"app.js",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Blog platform backend | [
"Article management",
"User comments",
"Category system"
] | django | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Task management system | [
"Task CRUD operations",
"User assignments",
"Status tracking"
] | flask | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
REST API for user management | [
"User registration",
"User authentication",
"Profile management"
] | fastapi | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": "from fastapi import FastAPI, HTTPException\nfrom pydantic import BaseModel\nfrom typing import List, Optional\n\napp = FastAPI()\n\nclass Item(BaseModel):\n id: Optional[int] = None\n name: str\n description: str\n\n@app.get(\"/\")\nas... | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
E-commerce backend API | [
"Product catalog",
"Shopping cart",
"Order processing",
"Payment integration"
] | fastapi | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": "from fastapi import FastAPI, HTTPException\nfrom pydantic import BaseModel\nfrom typing import List, Optional\n\napp = FastAPI()\n\nclass Item(BaseModel):\n id: Optional[int] = None\n name: str\n description: str\n\n@app.get(\"/\")\nas... | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
REST API for user management | [
"User registration",
"User authentication",
"Profile management"
] | express | javascript | {
"README.md": null,
"app.js": "const express = require('express');\nconst mongoose = require('mongoose');\nconst app = express();\n\n// Middleware\napp.use(express.json());\n\n// Routes\napp.get('/health', (req, res) => {\n res.json({ status: 'OK' });\n});\n\n// Start server\nconst PORT = process.env.PORT || 30... | {
"directories": [
"routes",
"controllers",
"middleware",
"models"
],
"files": [
"package.json",
"app.js",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Task management system | [
"Task CRUD operations",
"User assignments",
"Status tracking"
] | flask | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
REST API for user management | [
"User registration",
"User authentication",
"Profile management"
] | django | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Task management system | [
"Task CRUD operations",
"User assignments",
"Status tracking"
] | express | javascript | {
"README.md": null,
"app.js": "const express = require('express');\nconst mongoose = require('mongoose');\nconst app = express();\n\n// Middleware\napp.use(express.json());\n\n// Routes\napp.get('/health', (req, res) => {\n res.json({ status: 'OK' });\n});\n\n// Start server\nconst PORT = process.env.PORT || 30... | {
"directories": [
"routes",
"controllers",
"middleware",
"models"
],
"files": [
"package.json",
"app.js",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
E-commerce backend API | [
"Product catalog",
"Shopping cart",
"Order processing",
"Payment integration"
] | fastapi | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": "from fastapi import FastAPI, HTTPException\nfrom pydantic import BaseModel\nfrom typing import List, Optional\n\napp = FastAPI()\n\nclass Item(BaseModel):\n id: Optional[int] = None\n name: str\n description: str\n\n@app.get(\"/\")\nas... | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Blog platform backend | [
"Article management",
"User comments",
"Category system"
] | django | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Task management system | [
"Task CRUD operations",
"User assignments",
"Status tracking"
] | flask | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
E-commerce backend API | [
"Product catalog",
"Shopping cart",
"Order processing",
"Payment integration"
] | nestjs | javascript | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"routes",
"controllers",
"middleware",
"models"
],
"files": [
"package.json",
"app.js",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
E-commerce backend API | [
"Product catalog",
"Shopping cart",
"Order processing",
"Payment integration"
] | django | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Task management system | [
"Task CRUD operations",
"User assignments",
"Status tracking"
] | flask | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
E-commerce backend API | [
"Product catalog",
"Shopping cart",
"Order processing",
"Payment integration"
] | fastapi | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": "from fastapi import FastAPI, HTTPException\nfrom pydantic import BaseModel\nfrom typing import List, Optional\n\napp = FastAPI()\n\nclass Item(BaseModel):\n id: Optional[int] = None\n name: str\n description: str\n\n@app.get(\"/\")\nas... | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
REST API for user management | [
"User registration",
"User authentication",
"Profile management"
] | django | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
REST API for user management | [
"User registration",
"User authentication",
"Profile management"
] | django | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
REST API for user management | [
"User registration",
"User authentication",
"Profile management"
] | fastapi | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": "from fastapi import FastAPI, HTTPException\nfrom pydantic import BaseModel\nfrom typing import List, Optional\n\napp = FastAPI()\n\nclass Item(BaseModel):\n id: Optional[int] = None\n name: str\n description: str\n\n@app.get(\"/\")\nas... | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Blog platform backend | [
"Article management",
"User comments",
"Category system"
] | fastapi | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": "from fastapi import FastAPI, HTTPException\nfrom pydantic import BaseModel\nfrom typing import List, Optional\n\napp = FastAPI()\n\nclass Item(BaseModel):\n id: Optional[int] = None\n name: str\n description: str\n\n@app.get(\"/\")\nas... | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Blog platform backend | [
"Article management",
"User comments",
"Category system"
] | fastapi | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": "from fastapi import FastAPI, HTTPException\nfrom pydantic import BaseModel\nfrom typing import List, Optional\n\napp = FastAPI()\n\nclass Item(BaseModel):\n id: Optional[int] = None\n name: str\n description: str\n\n@app.get(\"/\")\nas... | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
E-commerce backend API | [
"Product catalog",
"Shopping cart",
"Order processing",
"Payment integration"
] | fastapi | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": "from fastapi import FastAPI, HTTPException\nfrom pydantic import BaseModel\nfrom typing import List, Optional\n\napp = FastAPI()\n\nclass Item(BaseModel):\n id: Optional[int] = None\n name: str\n description: str\n\n@app.get(\"/\")\nas... | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Blog platform backend | [
"Article management",
"User comments",
"Category system"
] | django | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
REST API for user management | [
"User registration",
"User authentication",
"Profile management"
] | fastapi | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": "from fastapi import FastAPI, HTTPException\nfrom pydantic import BaseModel\nfrom typing import List, Optional\n\napp = FastAPI()\n\nclass Item(BaseModel):\n id: Optional[int] = None\n name: str\n description: str\n\n@app.get(\"/\")\nas... | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Blog platform backend | [
"Article management",
"User comments",
"Category system"
] | django | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
REST API for user management | [
"User registration",
"User authentication",
"Profile management"
] | fastapi | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": "from fastapi import FastAPI, HTTPException\nfrom pydantic import BaseModel\nfrom typing import List, Optional\n\napp = FastAPI()\n\nclass Item(BaseModel):\n id: Optional[int] = None\n name: str\n description: str\n\n@app.get(\"/\")\nas... | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
E-commerce backend API | [
"Product catalog",
"Shopping cart",
"Order processing",
"Payment integration"
] | fastapi | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": "from fastapi import FastAPI, HTTPException\nfrom pydantic import BaseModel\nfrom typing import List, Optional\n\napp = FastAPI()\n\nclass Item(BaseModel):\n id: Optional[int] = None\n name: str\n description: str\n\n@app.get(\"/\")\nas... | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Task management system | [
"Task CRUD operations",
"User assignments",
"Status tracking"
] | gin | javascript | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": null,
"files": null,
"has_docs": null,
"has_tests": null,
"total_files": null
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
REST API for user management | [
"User registration",
"User authentication",
"Profile management"
] | fastapi | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": "from fastapi import FastAPI, HTTPException\nfrom pydantic import BaseModel\nfrom typing import List, Optional\n\napp = FastAPI()\n\nclass Item(BaseModel):\n id: Optional[int] = None\n name: str\n description: str\n\n@app.get(\"/\")\nas... | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
E-commerce backend API | [
"Product catalog",
"Shopping cart",
"Order processing",
"Payment integration"
] | fastapi | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": "from fastapi import FastAPI, HTTPException\nfrom pydantic import BaseModel\nfrom typing import List, Optional\n\napp = FastAPI()\n\nclass Item(BaseModel):\n id: Optional[int] = None\n name: str\n description: str\n\n@app.get(\"/\")\nas... | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Task management system | [
"Task CRUD operations",
"User assignments",
"Status tracking"
] | express | javascript | {
"README.md": null,
"app.js": "const express = require('express');\nconst mongoose = require('mongoose');\nconst app = express();\n\n// Middleware\napp.use(express.json());\n\n// Routes\napp.get('/health', (req, res) => {\n res.json({ status: 'OK' });\n});\n\n// Start server\nconst PORT = process.env.PORT || 30... | {
"directories": [
"routes",
"controllers",
"middleware",
"models"
],
"files": [
"package.json",
"app.js",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Task management system | [
"Task CRUD operations",
"User assignments",
"Status tracking"
] | gin | javascript | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": null,
"files": null,
"has_docs": null,
"has_tests": null,
"total_files": null
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Task management system | [
"Task CRUD operations",
"User assignments",
"Status tracking"
] | flask | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
E-commerce backend API | [
"Product catalog",
"Shopping cart",
"Order processing",
"Payment integration"
] | django | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Blog platform backend | [
"Article management",
"User comments",
"Category system"
] | django | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Blog platform backend | [
"Article management",
"User comments",
"Category system"
] | django | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Blog platform backend | [
"Article management",
"User comments",
"Category system"
] | django | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
REST API for user management | [
"User registration",
"User authentication",
"Profile management"
] | fastapi | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": "from fastapi import FastAPI, HTTPException\nfrom pydantic import BaseModel\nfrom typing import List, Optional\n\napp = FastAPI()\n\nclass Item(BaseModel):\n id: Optional[int] = None\n name: str\n description: str\n\n@app.get(\"/\")\nas... | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
REST API for user management | [
"User registration",
"User authentication",
"Profile management"
] | express | javascript | {
"README.md": null,
"app.js": "const express = require('express');\nconst mongoose = require('mongoose');\nconst app = express();\n\n// Middleware\napp.use(express.json());\n\n// Routes\napp.get('/health', (req, res) => {\n res.json({ status: 'OK' });\n});\n\n// Start server\nconst PORT = process.env.PORT || 30... | {
"directories": [
"routes",
"controllers",
"middleware",
"models"
],
"files": [
"package.json",
"app.js",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
REST API for user management | [
"User registration",
"User authentication",
"Profile management"
] | fastapi | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": "from fastapi import FastAPI, HTTPException\nfrom pydantic import BaseModel\nfrom typing import List, Optional\n\napp = FastAPI()\n\nclass Item(BaseModel):\n id: Optional[int] = None\n name: str\n description: str\n\n@app.get(\"/\")\nas... | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Task management system | [
"Task CRUD operations",
"User assignments",
"Status tracking"
] | gin | javascript | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": null,
"files": null,
"has_docs": null,
"has_tests": null,
"total_files": null
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Task management system | [
"Task CRUD operations",
"User assignments",
"Status tracking"
] | flask | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
E-commerce backend API | [
"Product catalog",
"Shopping cart",
"Order processing",
"Payment integration"
] | nestjs | javascript | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"routes",
"controllers",
"middleware",
"models"
],
"files": [
"package.json",
"app.js",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Task management system | [
"Task CRUD operations",
"User assignments",
"Status tracking"
] | express | javascript | {
"README.md": null,
"app.js": "const express = require('express');\nconst mongoose = require('mongoose');\nconst app = express();\n\n// Middleware\napp.use(express.json());\n\n// Routes\napp.get('/health', (req, res) => {\n res.json({ status: 'OK' });\n});\n\n// Start server\nconst PORT = process.env.PORT || 30... | {
"directories": [
"routes",
"controllers",
"middleware",
"models"
],
"files": [
"package.json",
"app.js",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
E-commerce backend API | [
"Product catalog",
"Shopping cart",
"Order processing",
"Payment integration"
] | nestjs | javascript | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"routes",
"controllers",
"middleware",
"models"
],
"files": [
"package.json",
"app.js",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Task management system | [
"Task CRUD operations",
"User assignments",
"Status tracking"
] | flask | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Blog platform backend | [
"Article management",
"User comments",
"Category system"
] | django | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Blog platform backend | [
"Article management",
"User comments",
"Category system"
] | django | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Blog platform backend | [
"Article management",
"User comments",
"Category system"
] | django | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
REST API for user management | [
"User registration",
"User authentication",
"Profile management"
] | django | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
E-commerce backend API | [
"Product catalog",
"Shopping cart",
"Order processing",
"Payment integration"
] | django | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
REST API for user management | [
"User registration",
"User authentication",
"Profile management"
] | fastapi | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": "from fastapi import FastAPI, HTTPException\nfrom pydantic import BaseModel\nfrom typing import List, Optional\n\napp = FastAPI()\n\nclass Item(BaseModel):\n id: Optional[int] = None\n name: str\n description: str\n\n@app.get(\"/\")\nas... | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
REST API for user management | [
"User registration",
"User authentication",
"Profile management"
] | django | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
E-commerce backend API | [
"Product catalog",
"Shopping cart",
"Order processing",
"Payment integration"
] | django | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
REST API for user management | [
"User registration",
"User authentication",
"Profile management"
] | django | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
REST API for user management | [
"User registration",
"User authentication",
"Profile management"
] | django | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
REST API for user management | [
"User registration",
"User authentication",
"Profile management"
] | express | javascript | {
"README.md": null,
"app.js": "const express = require('express');\nconst mongoose = require('mongoose');\nconst app = express();\n\n// Middleware\napp.use(express.json());\n\n// Routes\napp.get('/health', (req, res) => {\n res.json({ status: 'OK' });\n});\n\n// Start server\nconst PORT = process.env.PORT || 30... | {
"directories": [
"routes",
"controllers",
"middleware",
"models"
],
"files": [
"package.json",
"app.js",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
E-commerce backend API | [
"Product catalog",
"Shopping cart",
"Order processing",
"Payment integration"
] | django | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
E-commerce backend API | [
"Product catalog",
"Shopping cart",
"Order processing",
"Payment integration"
] | django | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
E-commerce backend API | [
"Product catalog",
"Shopping cart",
"Order processing",
"Payment integration"
] | django | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Blog platform backend | [
"Article management",
"User comments",
"Category system"
] | fastapi | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": "from fastapi import FastAPI, HTTPException\nfrom pydantic import BaseModel\nfrom typing import List, Optional\n\napp = FastAPI()\n\nclass Item(BaseModel):\n id: Optional[int] = None\n name: str\n description: str\n\n@app.get(\"/\")\nas... | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Blog platform backend | [
"Article management",
"User comments",
"Category system"
] | express | javascript | {
"README.md": null,
"app.js": "const express = require('express');\nconst mongoose = require('mongoose');\nconst app = express();\n\n// Middleware\napp.use(express.json());\n\n// Routes\napp.get('/health', (req, res) => {\n res.json({ status: 'OK' });\n});\n\n// Start server\nconst PORT = process.env.PORT || 30... | {
"directories": [
"routes",
"controllers",
"middleware",
"models"
],
"files": [
"package.json",
"app.js",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
REST API for user management | [
"User registration",
"User authentication",
"Profile management"
] | express | javascript | {
"README.md": null,
"app.js": "const express = require('express');\nconst mongoose = require('mongoose');\nconst app = express();\n\n// Middleware\napp.use(express.json());\n\n// Routes\napp.get('/health', (req, res) => {\n res.json({ status: 'OK' });\n});\n\n// Start server\nconst PORT = process.env.PORT || 30... | {
"directories": [
"routes",
"controllers",
"middleware",
"models"
],
"files": [
"package.json",
"app.js",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Blog platform backend | [
"Article management",
"User comments",
"Category system"
] | django | python | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"models",
"routes",
"services"
],
"files": [
"requirements.txt",
"main.py",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Blog platform backend | [
"Article management",
"User comments",
"Category system"
] | express | javascript | {
"README.md": null,
"app.js": "const express = require('express');\nconst mongoose = require('mongoose');\nconst app = express();\n\n// Middleware\napp.use(express.json());\n\n// Routes\napp.get('/health', (req, res) => {\n res.json({ status: 'OK' });\n});\n\n// Start server\nconst PORT = process.env.PORT || 30... | {
"directories": [
"routes",
"controllers",
"middleware",
"models"
],
"files": [
"package.json",
"app.js",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
E-commerce backend API | [
"Product catalog",
"Shopping cart",
"Order processing",
"Payment integration"
] | nestjs | javascript | {
"README.md": null,
"app.js": null,
"config.py": null,
"main.py": null,
"package.json": null,
"placeholder.txt": "Generated code placeholder",
"requirements.txt": null
} | {
"directories": [
"routes",
"controllers",
"middleware",
"models"
],
"files": [
"package.json",
"app.js",
"README.md"
],
"has_docs": true,
"has_tests": true,
"total_files": 3
} | {
"created_at": null,
"forks": null,
"stars": null,
"synthetic": true,
"updated_at": null,
"url": null
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.