GameStore is a full-stack video game store application built with .NET for browsing and purchasing video games.
Important
If you are using Windows or Linux, you need to install the following programs using the package manager of your operating system. The following instructions use Homebrew, which is a package manager for Mac OS.
The following programs should be installed:
- The
devel
branch is the default branch. - The
main
branch is the production branch.
- Feature branches should be named as
feature/<feature-name>
. - Bugfix branches should be named as
fix/<bugfix-name>
.
The branche name should be in the following format:
git checkout -b feature/add-chapter-for-this-topic
The basic structure includes:
fix
: for bug fixesfeat
: for new features
The commit message should be in the following format:
git commit -m "feat: Added chapter for this topic"