Simple telegram game that challenges users to tap their way into the top 10 for a 30-second tapping frenzy, with rewards awaiting the fastest.
Prerequisites
- Node.js and npm (or yarn) installed on your system. You can download them from the official Node.js website [https://nodejs.org]
Installation
- Clone this repository using git:
git clone https://github.com/mjavason/...
- Navigate to the project directory:
cd project-name...
- Install the project's dependencies:
npm install
Running the project
There are four main scripts defined in this project's package.json
file:
-
npm run dev
- This script is used for development purposes. It will start a development server and enable hot reloading.
-
npm run build
- This script is used to build the project for production. It will bundle your code, minify files and store them in a 'build' folder.
-
npm run start
- This script starts the application in production mode. It's what you would typically run after building the project for deployment.
-
npm run test
- This script runs the project's tests. Make sure you've installed the packages before running this script.
Additional Notes
- Refer to the
package.json
file for any additional scripts specific to this project. - Configuration files (e.g.,
.env
) might be required for the project to run properly. Take a look at theenv.sample
file for a guide. Make sure you have them set up according to your environment.