Lucky balls 6/48 is a game in which player chooses 6 numbers out of 48 in total, where 35 balls are drawn in each game. When the six played numbers are drawn within those 35 in the game, the ticket is winning. The odd is calculated based on how soon in the game the player had matched all six numbers on the ticket with the numbers drawn.
1). Have a desired project directory. e.g. mine is /Users/savke/Practice
. Open your terminal; to navigate to that directory, type cd ~/Practice
.
Tip: You can auto-complete directory in terminal by typing ~/
, the first letter, then pressing the tab
key.
2). At this Github page, copy the link at the HTTPS clone URL
. (If you don't have git
, simply download the zip file.)
3). Go back to your terminal, type git clone
then paste the url, like:
git clone https://github.com/savkelita/luckysix-react-game
4). Hit enter and let it install.
5). Go into the builder directory by typing
cd ~/Practice/luckysix-react-game
6). Install the dependencies by typing
npm install
7). To run it:
npm start
8). src/App.js is the entry point of app.
Made with 💓