{"id":23149896,"url":"https://github.com/uzh-ase-fs24/workspace","last_synced_at":"2026-04-28T01:32:42.558Z","repository":{"id":224916421,"uuid":"764558853","full_name":"uzh-ase-fs24/workspace","owner":"uzh-ase-fs24","description":"findMe workspace repository for local development, project management and documentation","archived":false,"fork":false,"pushed_at":"2024-05-06T07:41:31.000Z","size":341,"stargazers_count":1,"open_issues_count":5,"forks_count":0,"subscribers_count":0,"default_branch":"develop","last_synced_at":"2025-06-14T22:02:33.247Z","etag":null,"topics":["docker-compose","wiki"],"latest_commit_sha":null,"homepage":"","language":"Python","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/uzh-ase-fs24.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}},"created_at":"2024-02-28T09:50:59.000Z","updated_at":"2024-05-06T07:41:35.000Z","dependencies_parsed_at":"2024-03-08T17:42:23.959Z","dependency_job_id":"e8a6e78c-4c7f-400e-9dc8-0ecb8d20591c","html_url":"https://github.com/uzh-ase-fs24/workspace","commit_stats":null,"previous_names":["uzh-ase-fs24/whami","uzh-ase-fs24/workspace"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/uzh-ase-fs24/workspace","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uzh-ase-fs24%2Fworkspace","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uzh-ase-fs24%2Fworkspace/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uzh-ase-fs24%2Fworkspace/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uzh-ase-fs24%2Fworkspace/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/uzh-ase-fs24","download_url":"https://codeload.github.com/uzh-ase-fs24/workspace/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uzh-ase-fs24%2Fworkspace/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32362781,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-27T20:07:02.737Z","status":"ssl_error","status_checked_at":"2026-04-27T20:07:00.910Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["docker-compose","wiki"],"created_at":"2024-12-17T18:15:26.572Z","updated_at":"2026-04-28T01:32:42.543Z","avatar_url":"https://github.com/uzh-ase-fs24.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/uzh-ase-fs24\" target=\"_blank\"\u003e\n    \u003cimg alt=\"findme-logo\" height=\"150\" src=\"https://github.com/uzh-ase-fs24/workspace/wiki/logos/findMe_square_solid.png\"/\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n# findMe development Workspace 🤖\n\n## Quick Access Links\n\n- [wiki](https://github.com/uzh-ase-fs24/workspace/wiki)\n- [findme-backend](https://github.com/uzh-ase-fs24/backend)\n- [findme-frontend](https://github.com/uzh-ase-fs24/frontend)\n- [findme-shared](https://github.com/uzh-ase-fs24/shared)\n\n## Overview\n\nThe development workspace is configured as a pycharm project. It is intended to be used as the project folder.\nEach repository used for development will be cloned inside this workspace.\n\n```yaml\nworkspace\n-- .idea # pycharm project configuration\n-- scripts # configuration / commit scripts\n  # findme repositories\n-- backend\n-- frontend\n-- shared\n-- workspace.wiki # findme wiki\ndocker-compose.yml # to run application locally\n```\n\n## Setup\n\n### Prerequisites\n\n- python3.12\n- [pre-commit](https://pre-commit.com/#installation)\n- [LocalStack CLI](https://docs.localstack.cloud/getting-started/installation/#localstack-cli)\n- check each repository for their prerequisites\n\n### Initialization\n\nAfter cloning this repository run `python scripts/initialize_project.py` this will:\n\n- configure your git config\n- clone all necessary repositories\n- initialize pre-commit checks in each repository (you can do it manually by running `pre-commit install` in each\n  repository)\n\n## Running the application\n\nThe findMe application is designed and built as a cloud native application. To run the application locally we use docker\nand docker compose.\nBy running `docker compose up --build` from the root directory of this workspace the application will be started\nlocally. After the initial build you can use `docker compose up` to start the application.\nHowever, this will not include any changes made to the backend repository since the last build.\n\nOur docker compose defines the following services:\n\n```yaml\n  - localstack-main # emulates AWS services for local development\n  - serverless # used to deploy the AWS services to localstack (shuts down after successful execution)\n  - frontend # mounted frontend code, serves the frontend on localhost:8100\n```\n\nAfter the serverless container has stopped the application is ready and accessible on http://localhost:8100, use chrome\nand its mobile view that can be activated in the dev tools to simulate a mobile device.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fuzh-ase-fs24%2Fworkspace","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fuzh-ase-fs24%2Fworkspace","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fuzh-ase-fs24%2Fworkspace/lists"}