https://github.com/guibibeau/zora-game
A game prototype with Zora's API.
https://github.com/guibibeau/zora-game
cryptocurrency games nextjs nft zora
Last synced: 6 months ago
JSON representation
A game prototype with Zora's API.
- Host: GitHub
- URL: https://github.com/guibibeau/zora-game
- Owner: GuiBibeau
- Created: 2022-06-11T17:39:13.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-06-13T18:43:23.000Z (almost 3 years ago)
- Last Synced: 2024-12-01T07:04:39.430Z (6 months ago)
- Topics: cryptocurrency, games, nextjs, nft, zora
- Language: TypeScript
- Homepage: https://zora-game.vercel.app/
- Size: 362 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Zora hackathon submission
A game prototype with [Zora's API](https://docs.zora.co/docs/zora-api/intro).
Currently hosted on: http://zora-game.vercel.app/
---
## Index
- [Stack](#stack)
- [Available Pages](#available-pages)
- [Getting Started](#getting-started)
- [Local Commands](#local-commands)
- [Development](#development)
- [Build](#build)
- [Start](#start)---
## Stack
- [React](https://reactjs.org/)
- [Next.js](https://nextjs.org/)
- [Tailwind](https://tailwindcss.com/)
- [Zora](https://docs.zora.co/docs/zora-api/intro)---
## Available Pages
| Page | URL | Description |
| :--: | :-------: | :------------------------------------------: |
| Home | / | This is the home page to join the game. |
| Game | /game/:id | This is where the game actually takes place. |---
## Getting Started
Install application dependencies.
```sh
$ yarn install
```---
## Local Commands
In this section, you can find the commands to run the application. They are also available in the `scripts` section of the [package.json](package.json).
### Development
```sh
$ yarn dev
```Navigate to **http://localhost:3000/** to view the app.
### Build
```sh
$ yarn build
```The above command will start the production server.
### Start
To start it in production 🚀
```sh
$ yarn start
```---
## Contributing
1. Fork the repository.
2. Create your feature branch with specs (`git checkout -b my-new-feature`).
3. Commit your changes (`git commit -m 'Add some feature'`).
4. Push to the branch (`git push origin my-new-feature`).
5. Create new pull request.---
## Contributors
Gui Bibeau
Alejandro José Mena
Tommie Nguyá»…n
---
# **Have a question or suggestion?**
Contact me on [Twitter](https://twitter.com/guibibeau), or create a pull request on this project.
---
## License
The MIT License (MIT)
Copyright (c) 2022 Guillaume Bibeau-Laviolette
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
---