Skip to content

Latest commit

 

History

History
142 lines (91 loc) · 4.02 KB

README.md

File metadata and controls

142 lines (91 loc) · 4.02 KB

Tic Tac Toe World

Contributions? Welcome Maintained? Yes Linting

Don't forget to give the project a star ⭐ ¡Thanks!

Look at the goals of this project, things that will be added soon

vid-demo.gif

Try a game

📑 Contents

👨‍💻 Technologies


👨‍🏫 Installation

follow steps to run the project.

  1. Clone repository.

  2. Install package.json dependencies.

npm install
  1. Build and Start the project.
npm run start:build

or

  1. Start in development mode.
npm run dev
  1. You can now see the page locally at "localhost:8081".

Back to top 🔼


👋 Contributions

If you have a suggestion that would make this better, please fork the repo and create a Pull Request. You can also simply open an issue.

Important

Use conventional commits and ensure that the code passes the linter test, pull requests are not accepted without this last point.

Keep in mind that every change to the website would require updating the version in the package.json.

versioning of the page

  • format of verisoned
    • MAYOR.MINOR.PATCH

most relevant types of changes that affect versioning

  • minor-feat: Only used for making minor changes to existing things. update a PATCH version.

  • fix: Used when fixing a bug. update a PATCH version.

  • feat: Used when adding substantial content anywhere on the page. update a MINOR version.

  • The MAJOR version is only incremented when the MINOR version reaches 100 or there is a deep and general change across the entire page. This would only be handled by me, the repository owner.

  1. Fork the project.

  2. Clone your fork.

git clone https://github.com/@your_username/tic-tac-toe-world
  1. Create your Feature Branch.
git checkout -b feature/AmazingFeature
  1. Push to the Branch.
git push origin feature/AmazingFeature
  1. Open a Pull Request to branch master.

Warning

Respect the code styles: try to keep your pull requests as clean as possible, avoiding unnecessary changes like swapping a " for a ' and similar minor adjustments. If you wish to modify the styles, please do so in a separate pull request, and it will be evaluated accordingly.

🙏 Thank you very much to these individuals who contributed to this project.

Back to top 🔼


👨‍⚖️ License

Distributed under the MIT License. See LICENSE for more information.

Back to top 🔼


📬 Contact me

Famá Román

Back to top 🔼