Skip to content

Game of Life exercise. Updated version of https://github.com/fransguelinckx/gameoflife - Angular (4+) instead of AngularJS, Spring Boot (2.0.2.RELEASE) and Gradle (instead of Maven)

Notifications You must be signed in to change notification settings

nielsdelestinne/gameoflife

Repository files navigation

Game of Life

Game of Life Code Kata!

Using Gradle, Angular (4+) and Spring Boot (2.0.2.RELEASE)

Usage

  • If it's your first time using this application, read the First time usage section first... :)
  • Start the backend by running GameOfLifeApplication.java
  • Start the frontend with command npm start from inside gameoflife-ui/gameoflife-app

First time usage

  • Install Node.js (it will also install npm)
  • After installation
    • run node --version from inside the terminal, if it's correctly installed it will return a version number
    • run npm --version from inside the terminal, if it's correctly installed it will return a version number
  • Run npm install from inside gameoflife-ui/gameoflife-app

Some tips

  • Tip 1: Run your entire build and all (backend) tests with command gradlew clean build from inside the root folder (switchfully-gameoflife)
  • Tip 2: the UI won't work properly without a running backend.
  • Tip 3: You don't have to make any changes to the UI
  • Tip 4: You can access the frontend by surfing to http://localhost:4200