Have you ever played Super Mario Maker? well, this is something similar, but instead of Super Mario Bros, we will build Metal Slug scenarios. More info about the game? check Wikipedia
- NodeJS (Latest stable)
- Git (Latest stable)
- Text Editor or IDE
Every time there are changes to package.json
file run command below for installing/updating any project dependency
npm install
Run tests for Katas (/katas)
npm run test:katas
Run tests for main project (/src)
npm test
Run the server on the development mode
npm run dev
Run the server on deployment mode
node src/main/server.js
- Create branch with the following format for the name: <your name>/<kata or feature name being implemented>
- Commit changes in the branch created. For each commit created, make sure to add a meaningful commit message that describes the group of changes being committed. Limit=70 chars
- Push branch to origin repository (Github). NOTE: Never push to "main" branch
- Create a pull request (PR) in GitHub that points from your pushed branch to the target branch specified for the kata or feature development
- Add reviewers and wait for review comments. Once PR is approved, it can be merged to target branch
- After PR is merged, remove your branch from origin
As authors, make sure that PRs have the following:
- PR Title: Brief summary of changes being delivered by the PR. This should help reviewers to understand what is the goal of the changes
- PR Description (Optional): If Title is not enough, use PR description to add details about changes being delivered in the PR.
- A moderate number of changes. Goals for PRs should be kept as small as possible, so it's easier for reviewers to understand and reduce chances to introduce bugs hard to catch
As reviewers, a PR should be only approved if following conditions are met (In order of priority):
- All checks pass (tests passing, no lint errors, code coverage >= 75%)
- Changes accomplish the goal defined for the PR (Should make sense with the title)
- Changes are covered by tests (There could be few exceptions)
- git clone <repo url>
- git config
- git status
- git branch <branch name>
- git checkout <branch name>
- git add <file or folder>
- git commit -m <meaningful commit message>
- git push
- git pull
- Create a folder named
keys
at the same level of the project folder. - Ask for the database key.
- Download the provided database key.
- Store the key inside the folder
keys
.