{"id":20971600,"url":"https://github.com/kjpar0317/vue-python-graphql","last_synced_at":"2026-01-31T21:39:45.818Z","repository":{"id":119084774,"uuid":"509345221","full_name":"kjpar0317/vue-python-graphql","owner":"kjpar0317","description":"vue3-ts, pinia, urql, tailwindcss, daisyui, vite, python, fastapi, strawberry-graphql, sqlalchemy, poetry, aiomysql, asyncio","archived":false,"fork":false,"pushed_at":"2024-11-17T23:46:29.000Z","size":65,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-12T00:54:31.593Z","etag":null,"topics":["aiomysql","asyncio","daisyui","fastapi","pinia","poetry","python","sqlalchemy","strawberry-graphql","tailwindcss","urql","vite","vue"],"latest_commit_sha":null,"homepage":"","language":"Vue","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/kjpar0317.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":"2022-07-01T06:29:24.000Z","updated_at":"2024-11-17T23:46:32.000Z","dependencies_parsed_at":null,"dependency_job_id":"79942dbe-aae4-4cf1-b2f8-5ca339975509","html_url":"https://github.com/kjpar0317/vue-python-graphql","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kjpar0317/vue-python-graphql","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kjpar0317%2Fvue-python-graphql","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kjpar0317%2Fvue-python-graphql/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kjpar0317%2Fvue-python-graphql/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kjpar0317%2Fvue-python-graphql/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kjpar0317","download_url":"https://codeload.github.com/kjpar0317/vue-python-graphql/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kjpar0317%2Fvue-python-graphql/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28956485,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-31T18:30:42.805Z","status":"ssl_error","status_checked_at":"2026-01-31T18:30:19.593Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["aiomysql","asyncio","daisyui","fastapi","pinia","poetry","python","sqlalchemy","strawberry-graphql","tailwindcss","urql","vite","vue"],"created_at":"2024-11-19T04:04:16.367Z","updated_at":"2026-01-31T21:39:45.802Z","avatar_url":"https://github.com/kjpar0317.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# vue-python-graphql\n\nvue3, pinia, urql, windicss, daisyui, vite, python, fastapi, strawberry-graphql, sqlalchemy, poetry\n\n## DB 정보 입력 (mysql, mariadb로 개발되어 있음)\n\nbackend폴더에 .config파일 수정  \n[DATABASE]  \nDB_USER_NAME =  \nDB_USER_PASSWD =  \nDB_HOST = 127.0.0.1  \nDB_NAME =\n\n## DB 테스트 테이블 생성 (테스트를 위하여 대충 만든 것 임)\n\n```\nCREATE TABLE `tb_code_m` (\n\t`C_ID` VARCHAR(10) NULL DEFAULT NULL COLLATE 'utf8mb3_general_ci',\n\t`C_PARENT_ID` VARCHAR(10) NULL DEFAULT NULL COLLATE 'utf8mb3_general_ci',\n\t`C_NAME` VARCHAR(100) NULL DEFAULT NULL COLLATE 'utf8mb3_general_ci',\n\t`C_ENG_NAME` VARCHAR(100) NULL DEFAULT NULL COLLATE 'utf8mb4_general_ci',\n\t`C_DESCRIPTION` VARCHAR(1000) NULL DEFAULT NULL COLLATE 'utf8mb3_general_ci'\n)\nCOLLATE='utf8mb3_general_ci'\nENGINE=InnoDB\n;\nCREATE TABLE `tb_code_problem` (\n\t`CP_SEQ` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,\n\t`CP_CATEGORY_CD` VARCHAR(10) NULL DEFAULT NULL COLLATE 'utf8mb3_general_ci',\n\t`CP_TITLE` VARCHAR(100) NULL DEFAULT NULL COLLATE 'utf8mb3_general_ci',\n\t`CP_LEVEL_CD` VARCHAR(10) NULL DEFAULT NULL COLLATE 'utf8mb3_general_ci',\n\t`CP_CONTENT` TEXT NULL DEFAULT NULL COLLATE 'utf8mb3_general_ci',\n\t`CP_TAG` VARCHAR(100) NULL DEFAULT NULL COLLATE 'utf8mb3_general_ci',\n\t`CP_LAPTIME` DATETIME NULL DEFAULT NULL,\n\tPRIMARY KEY (`CP_SEQ`) USING BTREE\n)\nCOLLATE='utf8mb3_general_ci'\nENGINE=InnoDB\nAUTO_INCREMENT=9\n;\nCREATE TABLE `users` (\n\t`id` VARCHAR(50) NOT NULL DEFAULT 'AUTO_INCREMENT' COLLATE 'utf8mb3_general_ci',\n\t`name` VARCHAR(255) NULL DEFAULT NULL COLLATE 'utf8mb3_general_ci',\n\t`password` VARCHAR(255) NULL DEFAULT NULL COLLATE 'utf8mb3_general_ci',\n\tPRIMARY KEY (`id`) USING BTREE\n)\nCOLLATE='utf8mb3_general_ci'\nENGINE=InnoDB\n;\n```\n\n## FRONTEND 패키지 설치\n\nfrontend 폴더에서\n\n```\nnpm install\n```\n\n실행 시킴\n\n## BACKEND 패키지 설치\n\n### poetry 처음 설치의 경우 (파이썬 Python 2.7 아니면 3.5이상, 필자는 3.10.X)\n\nosx / linux / bashonwindows은 아래 curl url을 터미널에 입력해서 설치하면 된다\n\n```\n# Linux\ncurl -sSL https://install.python-poetry.org | python3 -\n# Windows\n(Invoke-WebRequest -Uri https://install.python-poetry.org -UseBasicParsing).Content | python -\n```\n\n### poetry가 설치되어 있는 경우\n\n```\npoetry install\n```\n\ninstall 후 .venv 가상환경이 생성되니 VSCODE로 작업 시 python: select interpretor를 .venv/Scrpits/python.exe를 설치하자 (안하는 경우 실행은 되겠지만 코드 warning을 마주하게 된다. app/root.py에서 vscode 디버깅하세요)\n\n```\npoetry run python main.py\n```\n\n로 실행한다.\n\n## FRONTEND 실행\n\n```\nnpm run dev\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkjpar0317%2Fvue-python-graphql","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkjpar0317%2Fvue-python-graphql","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkjpar0317%2Fvue-python-graphql/lists"}