{"id":19926037,"url":"https://github.com/hyperloot-nft/hyperloot-cc0-wars-website","last_synced_at":"2025-09-19T05:32:12.904Z","repository":{"id":152766239,"uuid":"621967889","full_name":"hyperloot-nft/hyperloot-cc0-wars-website","owner":"hyperloot-nft","description":"HyperLoot: CC0 Wars Website","archived":false,"fork":false,"pushed_at":"2023-04-14T09:18:26.000Z","size":22329,"stargazers_count":4,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-11-12T22:31:41.085Z","etag":null,"topics":["game","nft","nuxt","scss","vuejs","website"],"latest_commit_sha":null,"homepage":"https://cc0wars.com/","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/hyperloot-nft.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":"2023-03-31T19:35:18.000Z","updated_at":"2024-01-31T18:01:06.000Z","dependencies_parsed_at":null,"dependency_job_id":"42e07482-9817-409c-a69f-074d6d5e5756","html_url":"https://github.com/hyperloot-nft/hyperloot-cc0-wars-website","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/hyperloot-nft%2Fhyperloot-cc0-wars-website","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hyperloot-nft%2Fhyperloot-cc0-wars-website/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hyperloot-nft%2Fhyperloot-cc0-wars-website/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hyperloot-nft%2Fhyperloot-cc0-wars-website/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hyperloot-nft","download_url":"https://codeload.github.com/hyperloot-nft/hyperloot-cc0-wars-website/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":233553761,"owners_count":18693313,"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":["game","nft","nuxt","scss","vuejs","website"],"created_at":"2024-11-12T22:26:54.626Z","updated_at":"2025-09-19T05:32:07.047Z","avatar_url":"https://github.com/hyperloot-nft.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# HyperLoot: CC0 Wars Website\r\n![hyperloot-cc0-wars-github-repo-banner](https://user-images.githubusercontent.com/3419259/231532454-dec0e624-e038-4cea-8bfa-2654be316d86.jpg)\r\n\r\n## Table of Contents\r\n- [Links](#links)\r\n- [Technologies](#how-to-getting-started)\r\n- [Project Structure](#project-structure)\r\n- [How To Get Started](#how-to-getting-started)\r\n  - [Prerequisites](#prerequisites)\r\n  - [Installation](#installation)\r\n- [How To Run Locally](#how-to-run-locally)\r\n- [Git Commit Style Guide](#git-commit-style-guide)\r\n- [Git Branch Naming Convention](#git-branch-naming-convention)\r\n- [License](#license)\r\n\r\n## Links\r\n| Description | URL                     |\r\n| ----------- | ----------------------- |\r\n| Production  | https://cc0wars.com/    |\r\n\r\n## Technologies\r\n- [Nuxt 3](https://nuxt.com/) - for building Vue.js server-rendered site.\r\n- [SCSS](https://sass-lang.com/) - for maintainable and organized styling.\r\n- [Yarn](https://yarnpkg.com/) - for package management.\r\n- [Vercel](https://vercel.com/) - for staging and production deployment.\r\n- [Fathom](https://usefathom.com/) - for analytics.\r\n- [Include-media](https://eduardoboucas.github.io/include-media/) - for maintaining media queries in SCSS.\r\n\r\n## Project Structure\r\n```\r\n.\r\n├── assets/               # Asset files that build tool will process\r\n|   └── styles/           # Global CSS and SCSS files\r\n|       └── base/         # Base styles and resets\r\n|       └── variables/    # Variables, mixins, and functions\r\n|       └── global.scss   # global SCSS import file \r\n|\r\n├── components/           # Vue components\r\n|   ├── global/           # Global components\r\n|   |   └── ...\r\n|   |\r\n|   └── pages/            # Page-specific components\r\n|       └── ...\r\n|\r\n├── layouts/              # Layout templates\r\n|   └── ...\r\n|\r\n├── locales/              # Localization files\r\n|   └── ...\r\n|\r\n├── pages/                # Nuxt.js pages\r\n|   └── ...\r\n|\r\n├── plugins/              # Vue.js plugins\r\n|   └── ...\r\n|\r\n├── public                # Static files that served at the server root as-is\r\n|   └── ...\r\n|\r\n└── .env                  # Environment variables\r\n└── .gitignore            # Git ignore rules\r\n└── .npmrc                # NPM configuration file\r\n└── app.vue               # Root Vue component\r\n└── error.vue             # Error custom page\r\n└── LICENSE               # License terms for the software code\r\n└── nuxt.config.js        # Nuxt.js configuration file\r\n└── package.json          # Dependencies and scripts\r\n└── README.md             # Project documentation\r\n└── tsconfig.json         # TypeScript configuration file\r\n└── yarn.lock             # Yarn lock file\r\n```\r\n\r\n## How To Get Started\r\n\r\n### Prerequisites\r\nBefore you start working on this project, make sure you have the following installed on your local machine:\r\n\r\n1. [Node.js](https://nodejs.org/) - for running the application locally.\r\n2. [Yarn](https://yarnpkg.com/) - for package management.\r\n\r\nOnce you have these prerequisites installed and set up, you can proceed with the \"Installation\" section to start working on the project.\r\n\r\n### Installation\r\n\r\nMake sure to install the dependencies:\r\n\r\n```bash\r\n# yarn\r\nyarn install\r\n```\r\n\r\n## How To Run Locally\r\n\r\nFollow these steps to run the project locally on your machine:\r\n\r\n### Development Server\r\n\r\n```bash\r\n# Start the development server on http://localhost:3000\r\nyarn run dev\r\n```\r\n\r\n### Production\r\n\r\nBuild the application for production:\r\n\r\n```bash\r\nyarn run build\r\n```\r\n\r\nLocally preview production build:\r\n\r\n```bash\r\nyarn run preview\r\n```\r\n\r\n## Git Commit Style Guide\r\n- Keep your Git commit [atomic](https://en.wikipedia.org/wiki/Atomic_commit) and small.\r\n- Follow this format:\r\n```\r\nFormat:\r\n\u003ctype\u003e(\u003cscope\u003e): \u003csubject\u003e\r\nTypes:\r\n- feat (new feature for the user, not a new feature for build script)\r\n- fix (bug fix for the user, not a fix to a build script)\r\n- chore (updating grunt tasks, etc.; no production code change)\r\n- style (formatting, missing semi-colons, etc.; no production code change)\r\n- refactor (refactoring production code, e.g., renaming a variable)\r\n- docs (changes to the documentation)\r\n- test (adding missing tests, refactoring tests; no production code change)\r\nExamples:\r\nfeat(navbar): implement dropdown menu\r\nchore(footer): remove Twitter icon\r\nfix(form): fix incorrect border color (#138)\r\n```\r\n\r\n## Git Branch Naming Convention\r\n1. If it is a feature, prefix the branch name with `feat/`.\r\n2. If it is a bug fix, prefix the branch name with `fix/`.\r\n3. If it is a refactor, prefix the branch name with `refactor/`.\r\n\r\n**Example:**\r\n```\r\nfeat/navbar\r\nfix/footer\r\n```\r\n\r\n## License\r\n[MIT](https://github.com/hyperloot-nft/hyperloot-cc0-wars-website/blob/main/LICENSE)\r\n\r\nCopyright (c) 2023-present, HyperLoot\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhyperloot-nft%2Fhyperloot-cc0-wars-website","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhyperloot-nft%2Fhyperloot-cc0-wars-website","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhyperloot-nft%2Fhyperloot-cc0-wars-website/lists"}