{"id":21527364,"url":"https://github.com/mickgeek/schedule","last_synced_at":"2026-04-28T21:34:40.205Z","repository":{"id":91673361,"uuid":"501239157","full_name":"mickgeek/schedule","owner":"mickgeek","description":"Python 3.9 + Angular 13 (with Angular Material) + JWT implementation + SQLite","archived":false,"fork":false,"pushed_at":"2022-06-08T15:51:03.000Z","size":82,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-23T09:49:54.421Z","etag":null,"topics":["angular","javascript","jwt","material","python","sqlite"],"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/mickgeek.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}},"created_at":"2022-06-08T12:22:32.000Z","updated_at":"2022-06-09T09:44:50.000Z","dependencies_parsed_at":"2024-04-22T18:31:40.411Z","dependency_job_id":null,"html_url":"https://github.com/mickgeek/schedule","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/mickgeek/schedule","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mickgeek%2Fschedule","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mickgeek%2Fschedule/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mickgeek%2Fschedule/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mickgeek%2Fschedule/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mickgeek","download_url":"https://codeload.github.com/mickgeek/schedule/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mickgeek%2Fschedule/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32400867,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-28T19:38:08.556Z","status":"ssl_error","status_checked_at":"2026-04-28T19:37:55.688Z","response_time":56,"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":["angular","javascript","jwt","material","python","sqlite"],"created_at":"2024-11-24T01:48:41.699Z","updated_at":"2026-04-28T21:34:40.189Z","avatar_url":"https://github.com/mickgeek.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Schedule\n\nThe application based on pure [Python](https://www.python.org) and [Angular](https://angular.io) (the Google's JavaScript framework). With Schedule everyone can define, get, update and remove personal tasks.\n\n## Installation and Configuration\n\nInstall [Docker Engine](https://docs.docker.com/engine/install/ubuntu/) and [Docker Compose](https://docs.docker.com/compose/install/) to run the project through Docker. But it is not necessary, should to understand the logic: the `./server` directory refers to Python, the `./client` directory refers to Angular.\n\nBefore running, need to configure some environment variables.\n\n### Server Side\n\nEdit the `./server/src/env.py` file.\n\n**Databases**\n\n- `production_database_uri` - the URI of the production database\n- `development_database_uri` - the URI of the development database\n\n**CORS**\n\n- `client_endpoint` - the URI of the client side\n\n**JWT**\n\n- `jwt_expiration_time` - the time in seconds then the JWT will expire\n\n### Client Side\n\nEdit the `./client/src/environment/environment.prod.ts` and `./client/src/environment/environment.ts` files.\n\n**CORS**\n\n- `serverEndpoint` - the URI of the client side\n\n**Local Configuration**\n\n- `beginningDate` - the date from which should to begin the task list creation\n\n## Launching\n\nExecute the `docker compose up` command from the `./docker` directory and then create the development database with the `docker compose exec -w /home/schedule/server/src python python -m init create development` command. Check your browser page, the request to `http://0.0.0.0:3000` should be successful.\n\nTests must be run using the `docker compose exec -w /home/schedule/server/src python python -m init test` and `docker compose exec -w /home/schedule/client node npm run test` commands for server and client sides respectively.\n\n## Commands\n\nIn addition to standard [the Docker commands](https://docs.docker.com/engine/reference/run/), the Python part have the `init` module.\n\n**Server Side**\n\n- `docker compose exec -w /home/schedule/server/src python python -m init production create` - create production database\n- `docker compose exec -w /home/schedule/server/src python python -m init production delete` - drop production database\n- `docker compose exec -w /home/schedule/server/src python python -m init development create` - create development database\n- `docker compose exec -w /home/schedule/server/src python python -m init development delete` - drop development database\n- `docker compose exec -w /home/schedule/server/src python python -m init test` - run tests\n\n**Client Side**\n\n- `docker compose exec -w /home/schedule/client node npm run start` - launch the application\n- `docker compose exec -w /home/schedule/client node npm run build` - build the application\n- `docker compose exec -w /home/schedule/client node npm run test` - run unit tests\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmickgeek%2Fschedule","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmickgeek%2Fschedule","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmickgeek%2Fschedule/lists"}