{"id":25825678,"url":"https://github.com/azurespheredev/blueonionlabs-fullstack-assignment","last_synced_at":"2026-04-14T19:32:06.913Z","repository":{"id":279454617,"uuid":"938543093","full_name":"azurespheredev/BlueOnionLabs-Fullstack-Assignment","owner":"azurespheredev","description":"A web application that displays the client's monthly aggregated journal entries for the data provided.","archived":false,"fork":false,"pushed_at":"2025-03-10T21:09:11.000Z","size":265,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-03T00:04:33.572Z","etag":null,"topics":["material-ui","postgresql","rails8","react","ruby","typescript"],"latest_commit_sha":null,"homepage":"","language":"Ruby","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/azurespheredev.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-02-25T05:50:24.000Z","updated_at":"2025-03-10T21:09:14.000Z","dependencies_parsed_at":"2025-02-25T17:33:59.287Z","dependency_job_id":"fc306e0c-2ffe-4f98-880c-1a43ef7e02c4","html_url":"https://github.com/azurespheredev/BlueOnionLabs-Fullstack-Assignment","commit_stats":null,"previous_names":["azurespheredev/blueonionlabs-fullstack-assignment"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/azurespheredev/BlueOnionLabs-Fullstack-Assignment","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azurespheredev%2FBlueOnionLabs-Fullstack-Assignment","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azurespheredev%2FBlueOnionLabs-Fullstack-Assignment/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azurespheredev%2FBlueOnionLabs-Fullstack-Assignment/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azurespheredev%2FBlueOnionLabs-Fullstack-Assignment/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/azurespheredev","download_url":"https://codeload.github.com/azurespheredev/BlueOnionLabs-Fullstack-Assignment/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azurespheredev%2FBlueOnionLabs-Fullstack-Assignment/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31812968,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T18:05:02.291Z","status":"ssl_error","status_checked_at":"2026-04-14T18:05:01.765Z","response_time":153,"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":["material-ui","postgresql","rails8","react","ruby","typescript"],"created_at":"2025-02-28T14:06:39.179Z","updated_at":"2026-04-14T19:32:06.905Z","avatar_url":"https://github.com/azurespheredev.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ✅ Blue Onion Labs Take Home Assignment\n\n## Features\n\n- Extract data from a CSV file stored locally (not a Cloud Storage ATM)\n- Look up journal entries by specifying the month and year\n- Refresh functionality to re-fetch data in case of errors\n- Export results as CSV or Excel files\n\n## Technologies\n\n### Backend\n\n- **[Ruby v3.3.7](https://www.ruby-lang.org/en/)** – Core programming language ([Documentation](https://www.ruby-lang.org/en/documentation/))\n- **[Rails v8.0.1](https://rubyonrails.org/)** – Web application framework ([Documentation](https://guides.rubyonrails.org/))\n- **[PostgreSQL](https://www.postgresql.org/)** – Relational database management system ([Documentation](https://www.postgresql.org/docs/))\n- **[Docker](https://www.docker.com/)** – Containerization for consistent development and deployment ([Documentation](https://docs.docker.com/))\n- **[RSpec](https://rspec.info/)** – Testing framework ([Documentation](https://rspec.info/documentation/))\n\n### Frontend\n\n- **[TypeScript v4.9.5](https://www.typescriptlang.org/)** – Type-safe JavaScript alternative ([Documentation](https://www.typescriptlang.org/docs/))\n- **[React v19](https://react.dev/)** – JavaScript library for building user interfaces ([Documentation](https://react.dev/learn))\n- **[Material UI](https://mui.com/)** – UI components for a modern design system ([Documentation](https://mui.com/material-ui/getting-started/overview/))\n- **[ESLint](https://eslint.org/)** – Linting tool for maintaining code quality ([Documentation](https://eslint.org/docs/latest/))\n- **[Prettier](https://prettier.io/)** – Code formatter for consistent style ([Documentation](https://prettier.io/docs/en/))\n\n## Setup and Installation\n\n### Environment Variables\n\nBefore running the application, set up the following environment variables for both the backend and frontend:\n\n#### Backend Environment\n\nCreate a `.env` file and add the following variables:\n\n```ini\nRAILS_MAX_THREADS=5\nCORS_ORIGIN=http://localhost:4000\n\n# PostgreSQL\nPOSTGRES_HOST=localhost\nPOSTGRES_DB_DEV=blue_onion_labs\nPOSTGRES_DB_TEST=blue_onion_labs\nPOSTGRES_DB_PROD=blue_onion_labs\nPOSTGRES_USERNAME=postgres\nPOSTGRES_PASSWORD=12345678\n```\n\n\u003e ⚠️ **Note:** Update these variables based on your environment settings.\n\n#### Frontend Environment\n\nCreate a `.env` file and add the following variable:\n\n```ini\nPORT=4000\n```\n\n### Running the Application\n\n#### 1. Start the Backend (Rails API)\n\nRun the following command to build and start the Rails server:\n\n```sh\nsh backend-buildRun.sh\n```\n\nIf the backend has already been built, use:\n\n```sh\nsh backend-run.sh\n```\n\n#### 2. Start the Frontend (React App)\n\nRun the following command to build and start the frontend:\n\n```sh\nsh frontend-buildRun.sh\n```\n\nIf the frontend has already been built, use:\n\n```sh\nsh frontend-run.sh\n```\n\n#### 3. Access the Web App\n\nYou will see the web page running on [localhost:4000](http://localhost:4000) and there we go! 🥳\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fazurespheredev%2Fblueonionlabs-fullstack-assignment","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fazurespheredev%2Fblueonionlabs-fullstack-assignment","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fazurespheredev%2Fblueonionlabs-fullstack-assignment/lists"}