{"id":20472674,"url":"https://github.com/maxpou/dictionary-game","last_synced_at":"2026-04-20T03:31:53.029Z","repository":{"id":18100290,"uuid":"77163719","full_name":"maxpou/dictionary-game","owner":"maxpou","description":":notebook_with_decorative_cover: A dictionary mini game","archived":false,"fork":false,"pushed_at":"2022-12-10T17:01:45.000Z","size":4839,"stargazers_count":2,"open_issues_count":37,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-07-01T11:08:02.281Z","etag":null,"topics":["dictionary-game","firebase","jamstack","semantic-ui","vuejs2"],"latest_commit_sha":null,"homepage":"https://maxpou.github.io/dictionary-game/","language":"Vue","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/maxpou.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}},"created_at":"2016-12-22T17:31:41.000Z","updated_at":"2023-05-12T16:45:57.000Z","dependencies_parsed_at":"2023-01-11T20:28:02.998Z","dependency_job_id":null,"html_url":"https://github.com/maxpou/dictionary-game","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/maxpou/dictionary-game","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxpou%2Fdictionary-game","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxpou%2Fdictionary-game/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxpou%2Fdictionary-game/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxpou%2Fdictionary-game/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/maxpou","download_url":"https://codeload.github.com/maxpou/dictionary-game/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxpou%2Fdictionary-game/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32031546,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T00:18:06.643Z","status":"online","status_checked_at":"2026-04-20T02:00:06.527Z","response_time":94,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["dictionary-game","firebase","jamstack","semantic-ui","vuejs2"],"created_at":"2024-11-15T14:21:14.638Z","updated_at":"2026-04-20T03:31:53.010Z","avatar_url":"https://github.com/maxpou.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Dictionary Game\n\n[![Build Status](https://travis-ci.org/maxpou/dictionary-game.svg?branch=master)](https://travis-ci.org/maxpou/dictionary-game) [![Standard - JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com) [![tested with jest](https://img.shields.io/badge/tested_with-jest-99424f.svg)](https://github.com/facebook/jest) [![Greenkeeper badge](https://badges.greenkeeper.io/maxpou/dictionary-game.svg)](https://greenkeeper.io/)\n\n\nA small web app to improve my english vocabulary.\n\n![screenshots](./src/assets/screens/all-screens.png)\n\n## [Go to the application](https://maxpou.github.io/dictionary-game/#/)\n\n## What's Included: \n\n* [Vue.js](https://vuejs.org/): an awesome JS Framework ❤️\n  * [vue-router](https://router.vuejs.org/en/)\n  * [vuex](https://vuex.vuejs.org/en/): for state management\n* [jest](https://facebook.github.io/jest/): for unit testing\n* [Firebase](https://console.firebase.google.com/) for authentication + database\n* [SemanticUI](http://semantic-ui.com/): CSS Framework.\n\n\nBased on [vue-cli 3](https://github.com/vuejs/vue-cli/blob/dev/docs/README.md#conventions) and follow his file structure/conventions.\n\n\n## Firebase\n\nThis application use Firebase for Authentication and Data storage.  \nIn this project, I use 2 project to separate environments:\n\nAPI ENDPOINTS                                  | Environment       \n---------------------------------------------- | ------------------\n\u003chttps://translate-2f28d.firebaseio.com/\u003e      | Production        \n\u003chttps://translate-test-aee8f.firebaseio.com/\u003e | Dev / Test        \n\nDatabase access rules:\n\n```json\n{\n  \"rules\": {\n    \"users\": {\n      \"$uid\": {\n        \".read\": \"$uid === auth.uid\",\n        \".write\": \"$uid === auth.uid\"\n      }\n    }\n  }\n}\n```\n\nData structure:\n\n```js\n├── users/\n│   └── {userID}/\n|       └── words/\n│           ├── {wordId}/\n│               // example of a word:\n│               {\n│                 content: \"a word\",\n│                 enabled: true,\n│                 translation: \"a word translation\"\n│               }\n```\n\n**Notes:**\n\n* [Why I don't use array with Firebase](https://firebase.googleblog.com/2014/04/best-practices-arrays-in-firebase.html)\n* [How to get a Firebase token (official doc)](https://firebase.google.com/docs/reference/rest/database/user-auth)\n\n## Dev tools\n\nAvailable commands:\n\n* `npm run serve`: start a mini HTTP server\n* `npm run build` build for production\n* `npm run lint`: lint code\n* `npm test`: run unit tests\n\nMore information in the [official documentation](https://github.com/vuejs/vue-cli/blob/dev/docs/cli-service.md)\n\n## Deployment\n\nThis app is hosted by [Github Pages](https://pages.github.com/) and the Deployment is fulfilled by [Travis CI](https://travis-ci.org/maxpou/dictionary-game) (lint+tests must be green).\n\n## Icons\n\nIcons made by [Flat Icons](https://www.flaticon.com/authors/flat-icons).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxpou%2Fdictionary-game","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaxpou%2Fdictionary-game","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxpou%2Fdictionary-game/lists"}