{"id":29536830,"url":"https://github.com/apilogicserver/vibe-standard","last_synced_at":"2026-02-03T20:43:08.265Z","repository":{"id":303428590,"uuid":"1015465671","full_name":"ApiLogicServer/vibe-standard","owner":"ApiLogicServer","description":"Vibe for Northwind, no training","archived":false,"fork":false,"pushed_at":"2025-07-07T14:54:35.000Z","size":193,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-07T15:51:50.578Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","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/ApiLogicServer.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}},"created_at":"2025-07-07T14:41:35.000Z","updated_at":"2025-07-07T14:54:39.000Z","dependencies_parsed_at":"2025-07-07T15:51:52.253Z","dependency_job_id":"7ad04652-250e-476f-9e17-3d2ef8194a44","html_url":"https://github.com/ApiLogicServer/vibe-standard","commit_stats":null,"previous_names":["apilogicserver/vibe-standard"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ApiLogicServer/vibe-standard","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ApiLogicServer%2Fvibe-standard","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ApiLogicServer%2Fvibe-standard/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ApiLogicServer%2Fvibe-standard/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ApiLogicServer%2Fvibe-standard/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ApiLogicServer","download_url":"https://codeload.github.com/ApiLogicServer/vibe-standard/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ApiLogicServer%2Fvibe-standard/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29056735,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-03T20:13:53.544Z","status":"ssl_error","status_checked_at":"2026-02-03T20:13:40.507Z","response_time":96,"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":"2025-07-17T03:10:14.000Z","updated_at":"2026-02-03T20:43:08.247Z","avatar_url":"https://github.com/ApiLogicServer.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Northwind Database Analysis Project\n\nA comprehensive Python project for analyzing and visualizing the Northwind sample database using Flask web interface and Jupyter notebooks.  It was created automatically with CoPilot:\n\n```bash\nCreate a project for this database: `samples/dbs/nw.sqlite`\n```\n\n## Features\n\n- ✅ **Database Analysis**: SQLAlchemy ORM models for all Northwind tables\n- ✅ **Web Interface**: Flask application for interactive data exploration\n- ✅ **Data Visualization**: Charts and graphs using Plotly and Matplotlib\n- ✅ **Jupyter Notebooks**: Exploratory data analysis and reporting\n- ✅ **RESTful API**: Endpoints for accessing data programmatically\n\n\u003cbr\u003e\n\n## Missing Features\n\n\u003e This readme was created by CoPilot, except for this section, where we evaluate the implementation.\n\nThe following features are missing.   (Note: they are provided by CoPilot - (only) when trained for GenAI-Logic.)\n\n- ❌ **API:** non-standard, no pagination, sorting, or optimistic locking.  Not multi-table.\n- ❌ **Web Interface:** no automatic joins, limited navigations (e.g., items for order), no add/update services\n- ❌ **Business Logic:** fails to meet basic requirements\n   * major bugs (e.g., changing an Orders Customer-id -- not handled)\n   * performs poorly (e.g., reads all orders/items to compute customer balance)\n   * for more information, [click here](https://github.com/ApiLogicServer/basic_demo/blob/main/logic/declarative-vs-procedural-comparison.md)\n\n\n\u003cbr\u003e\n\n## Project Structure\n\n```\nvibe/\n├── src/\n│   ├── models/          # SQLAlchemy models\n│   ├── routes/          # Flask routes\n│   ├── services/        # Business logic\n│   └── utils/           # Utility functions\n├── templates/           # HTML templates\n├── static/             # CSS, JS, images\n├── notebooks/          # Jupyter notebooks\n├── data/               # Database files\n└── tests/              # Unit tests\n```\n\n## Setup\n\n1. Create virtual environment:\n   ```bash\n   python -m venv venv\n   source venv/bin/activate  # On Windows: venv\\Scripts\\activate\n   ```\n\n2. Install dependencies:\n   ```bash\n   pip install -r requirements.txt\n   ```\n\n3. Copy your Northwind database to the `data/` directory\n\n4. Run the application:\n   ```bash\n   python app.py\n   ```\n\n5. Open browser to `http://localhost:5002`\n\n## Usage\n\n- **Web Interface**: Navigate to the Flask application for interactive charts and data tables\n- **API**: Use `/api/` endpoints for programmatic access\n- **Notebooks**: Open Jupyter Lab for detailed analysis: `jupyter lab`\n\n## Database Schema\n\nThe Northwind database contains:\n- **Customers**: Customer information\n- **Orders**: Order details and dates\n- **Products**: Product catalog\n- **Categories**: Product categories\n- **Suppliers**: Supplier information\n- **Employees**: Employee records\n- **Shippers**: Shipping companies\n\n## Development\n\n- Run tests: `python -m pytest tests/`\n- Start development server: `flask run --debug`\n- Format code: `black src/`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapilogicserver%2Fvibe-standard","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fapilogicserver%2Fvibe-standard","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapilogicserver%2Fvibe-standard/lists"}