{"id":18468847,"url":"https://github.com/shvixxl/tablic","last_synced_at":"2025-04-08T10:32:32.944Z","repository":{"id":38840148,"uuid":"335292696","full_name":"shvixxl/tablic","owner":"shvixxl","description":"Online virtual tabletop 🎲","archived":false,"fork":false,"pushed_at":"2024-10-29T16:23:02.000Z","size":2905,"stargazers_count":5,"open_issues_count":3,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-23T11:04:18.922Z","etag":null,"topics":["docker","fastapi","python","typescript","vuejs"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/shvixxl.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2021-02-02T13:09:19.000Z","updated_at":"2024-08-27T07:42:03.000Z","dependencies_parsed_at":"2024-07-09T11:07:29.095Z","dependency_job_id":"91699b65-dadd-4929-9495-07f15995c6fb","html_url":"https://github.com/shvixxl/tablic","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shvixxl%2Ftablic","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shvixxl%2Ftablic/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shvixxl%2Ftablic/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shvixxl%2Ftablic/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/shvixxl","download_url":"https://codeload.github.com/shvixxl/tablic/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247824149,"owners_count":21002214,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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","fastapi","python","typescript","vuejs"],"created_at":"2024-11-06T10:08:18.387Z","updated_at":"2025-04-08T10:32:30.187Z","avatar_url":"https://github.com/shvixxl.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Tablic\n\n\u003cp\u003e\n  \u003ca href=\"https://github.com/ShviXXL/tablic/actions/workflows/backend.yml\"\u003e\n    \u003cimg src=\"https://github.com/ShviXXL/tablic/actions/workflows/backend.yml/badge.svg\" alt=\"Backend\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/ShviXXL/tablic/actions/workflows/frontend.yml\"\u003e\n    \u003cimg src=\"https://github.com/ShviXXL/tablic/actions/workflows/frontend.yml/badge.svg\" alt=\"Frontend\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/ShviXXL/tablic/actions/workflows/frontend.yml\"\u003e\n    \u003cimg src=\"https://github.com/ShviXXL/tablic/actions/workflows/codeql.yml/badge.svg\" alt=\"CodeQL\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n Web Application.\n\n- [Tablic](#tablic)\n  - [Requirements](#requirements)\n    - [Backend](#backend)\n    - [Frontend](#frontend)\n  - [Using this Project](#using-this-project)\n    - [Configuration](#configuration)\n      - [Additional Configuration](#additional-configuration)\n        - [Logging](#logging)\n    - [Development](#development)\n      - [Endpoints](#endpoints)\n  - [License](#license)\n\n## Requirements\n\n### Backend\n\n- [Docker](https://www.docker.com/)\n- [Docker Compose](https://docs.docker.com/compose/)\n\n### Frontend\n\n## Using this Project\n\n### Configuration\n\nCreate a copy of `.env.example` file and rename it to `.env`:\n\n```bash\ncp .env.example .env\n```\n\nOpen `.env` file and set these environment variables:\n\n- `DB_PASSWORD` - mongodb password.\n- `SECRET_KEY` - backend server secret key.\n\n#### Additional Configuration\n\n##### Logging\n\nFor reference use the [Loguru documentation](https://loguru.readthedocs.io/en/stable/api.html#).\n\n- [`LOGGING_LEVEL`](https://docs.python.org/3/library/logging.html#logging-levels) - The minimum severity level from which logged messages should be sent to the sink. *Default* is `20` or `INFO`.\n- `LOGGING_FORMAT` - The template used to format logged messages.\n- [`LOGGING_ROTATION`](https://loguru.readthedocs.io/en/stable/api/logger.html#file) - A condition indicating whenever the current logged file should be closed and a new one started. *Default* is `1 day`.\n- [`LOGGING_RETENTION`](https://loguru.readthedocs.io/en/stable/api/logger.html#file) - A directive filtering old files that should be removed during rotation or end of program. *Default* is `1 month`.\n- [`LOGGING_COMPRESSION`](https://loguru.readthedocs.io/en/stable/api/logger.html#file) - A compression or archive format to which log files should be converted at closure. *Default* is `tar.gz`.\n\n### Development\n\nStart the stack with `docker-compose`:\n\n```bash\ndocker-compose up -d\n```\n\nTo check the logs, run:\n\n```bash\ndocker-compose logs\n```\n\nTo check the logs of a specific service, add the name of the service, e.g.:\n\n```bash\ndocker-compose logs backend\n```\n\nTo bring the stack down, run:\n\n```bash\ndocker-compose down\n```\n\n#### Endpoints\n\n- *Client*: \u003chttp://localhost\u003e\n- *API*: \u003chttp://localhost:8000/api\u003e\n- *Interactive documentation* (Swagger UI): \u003chttp://localhost:8000/api/docs\u003e\n- *Alternative documentation* (ReDoc): \u003chttp://localhost:8000/api/redoc\u003e\n\n## License\n\n[MIT](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshvixxl%2Ftablic","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshvixxl%2Ftablic","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshvixxl%2Ftablic/lists"}