Skip to content

daniel-keogh/gesture-tetris

Repository files navigation

Gesture Tetris

Y4S2 Gesture-Based UI Development Project.

Description

A Tetris-clone playable using hand gestures. Built with Vue.js and Fingerpose.

Project Setup

First, please make sure you have Node.js installed on your system.

You should then run the following command to install the project's dependencies.

$ npm install

Run a Development Server

$ npm run serve

You should then be able to view the application in your browser at http://localhost:8080.

Create a Production Build

$ npm run build

Lint and Fix Files

$ npm run lint

Customize Configuration

See Configuration Reference.

Heroku Deployment

The app is deployed to Heroku at this link. You can push to your own Heroku server by first installing the Heroku CLI and then running the following commands:

$ heroku login -i
$ heroku create
$ heroku buildpacks:add heroku/nodejs
$ heroku buildpacks:add https://github.com/heroku/heroku-buildpack-static
$ git push heroku main