{"id":33001928,"url":"https://github.com/jinganix/guess","last_synced_at":"2026-01-31T07:11:09.716Z","repository":{"id":219457695,"uuid":"749085728","full_name":"jinganix/guess","owner":"jinganix","description":"猜猜谜题微信小程序源码 - The source code of the 'Guess the Riddle' Wechat miniprogram","archived":false,"fork":false,"pushed_at":"2026-01-21T21:30:58.000Z","size":7808,"stargazers_count":69,"open_issues_count":11,"forks_count":14,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-22T10:16:25.802Z","etag":null,"topics":["miniprogram","weapp","wechat"],"latest_commit_sha":null,"homepage":"","language":"Java","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/jinganix.png","metadata":{"files":{"readme":"README.en.md","changelog":null,"contributing":"CONTRIBUTING.md","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-01-27T14:49:51.000Z","updated_at":"2026-01-14T02:31:24.000Z","dependencies_parsed_at":"2025-12-11T19:56:47.505Z","dependency_job_id":null,"html_url":"https://github.com/jinganix/guess","commit_stats":null,"previous_names":["jinganix/guess"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jinganix/guess","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jinganix%2Fguess","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jinganix%2Fguess/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jinganix%2Fguess/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jinganix%2Fguess/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jinganix","download_url":"https://codeload.github.com/jinganix/guess/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jinganix%2Fguess/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28932644,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-31T04:05:25.756Z","status":"ssl_error","status_checked_at":"2026-01-31T04:02:35.005Z","response_time":128,"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":["miniprogram","weapp","wechat"],"created_at":"2025-11-13T14:00:24.545Z","updated_at":"2026-01-31T07:11:09.699Z","avatar_url":"https://github.com/jinganix.png","language":"Java","funding_links":[],"categories":["Demo"],"sub_categories":["可以直接运行成功"],"readme":"[![CI](https://github.com/jinganix/guess/actions/workflows/ci.yml/badge.svg)](https://github.com/jinganix/guess/actions/workflows/ci.yml)\n[![License](http://img.shields.io/:license-apache-brightgreen.svg)](http://www.apache.org/licenses/LICENSE-2.0.html)\n\n[中文版本](README.md)\n\n# Guess\n\nThe source code of the 'Guess Who I Am' Wechat miniprogram, you can [scan to experience](#qr-code) the miniprogram\n\n- Frontend development using `TypeScript` with `webpack` for building and bundling\n- Backend development using `Java` and `Spring` framework with `Gradle` for building and packaging\n\n## Running the Project\n\nTo run the project, you need to first clone the source code and navigate to the project's root directory.\n\n```shell\ngit clone git@github.com:jinganix/guess.git\ncd guess\n```\n\n### Backend\n\n#### Running with docker-compose\n\n- Modify the [application-local.yml](service/guess/src/main/resources/application-local.yml) file to configure the backend service of the project\n\n- core.weapp.app-id: The `app-id` of the WeChat mini-program\n- core.weapp.app-secret: The `app-secret` of the WeChat mini-program\n\nIf you have `docker` and `docker-compose` installed, you can start the backend service using the following command:\n\n```shell\n./gradlew build\ndocker-compose up --build\n```\n\n#### Running with Gradle\n\nYou need to install JDK with the corresponding version specified in [.tool-versions](.tool-versions) and start a MySQL database.\n\nModify the application-local.yml file to configure the backend services of the project.\n\n- core.weapp.app-id: The `app-id` of the WeChat mini-program\n- core.weapp.app-secret: The `app-secret` of the WeChat mini-program\n- core.url.db-mysql: The connection URL of the MySQL database, e.g., `jdbc:mysql://127.0.0.1:3306/guess`\n- spring.datasource.username: The database username\n- spring.datasource.password: The database password\n\nThe following command can be used to start the backend services on a Linux or macOS system:\n\n```shell\n./gradlew service:guess:bootRun\n```\n\nThe following command can be used to start the backend services on a Windows system:\n\n```shell\n./gradlew.bat service:guess:bootRun\n```\n\n### Frontend\n\nYou need to install [node.js](https://nodejs.org/en) with the version specified in [.tool-versions](.tool-versions).\n\n#### Running the Commands\n\n```shell\ngit clone git@github.com:jinganix/guess.git\ncd guess/frontend/weapp\nnpm install\nnpm start\n```\n\n#### Wechat devtools\n\n1. Import`guess/frontend/weapp/dist` into Wechat devtools\n2. Disable domain verification\n\n   \u003cimg src=\"docs/devtools.setting.png\" alt=\"Image\" width=\"320\" height=\"484\"\u003e\n\n## \u003ca id=\"qr-code\"\u003e\u003c/a\u003eScan to experience\n\n\u003cimg src=\"docs/qrcode.jpg\" alt=\"Image\" width=\"240\" height=\"240\"\u003e\n\n## Contributing\n\nIf you are interested in reporting/fixing issues and contributing directly to the code base, please see [CONTRIBUTING.md](CONTRIBUTING.md) for more information on what we're looking for and how to get started.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjinganix%2Fguess","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjinganix%2Fguess","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjinganix%2Fguess/lists"}