Giter VIP home page Giter VIP logo

floodit's Introduction

Flood It

A web game developed with Spring Boot in Java for the backend and Angular in JavaScript for the frontend.

Requirements

To run the application, you will need:

Additionally, to compile the backend and frontend, you will need:

Initial setup

  • Create a PostgreSQL user named floodit for the application:

    $> sudo -u postgres createuser --interactive --pwprompt floodit
    Enter password for new role:
    Enter it again:
    Shall the new role be a superuser? (y/n) n
    Shall the new role be allowed to create databases? (y/n) n
    Shall the new role be allowed to create more new roles? (y/n) n

    You should answer no to all questions. The floodit user does not need any special privileges.

  • Create a PostgreSQL database named floodit and owned by the floodit user:

    $> sudo -u postgres createdb --owner floodit floodit
  • Clone the repository:

    $> git clone https://github.com/MediaComem/floodit.git
  • Download dependencies and compile the application (grab a coffee, this might take a while the first time):

    $> cd floodit
    $> mvn clean install -Pskip-test
  • Install frontend dependencies:

    $> npm ci
  • You can configure the application in one of two ways:

    • Either set any of the documented environment variables, for example:

      export FLOODIT_DATABASE_HOST=localhost
      export FLOODIT_DATABASE_PORT=5432
      export FLOODIT_DATABASE_NAME=floodit
      export FLOODIT_DATABASE_USERNAME=floodit
      export FLOODIT_DATABASE_PASSWORD=mysecretpassword
      export FLOODIT_SERVER_PORT=5000
    • Or create a local configuration file based on the provided sample:

      cp backend/config/application-default.local.sample.yml backend/config/application-default.local.yml

      Edit backend/config/application-default.local.yml with your favorite editor:

      nano backend/config/application-default.local.yml
      vim backend/config/application-default.local.yml

      Read the instructions contained in the file and fill in the database connection parameters and web endpoint settings.

      The backend/config/application-default.local.yml file will be ignored by Git.

Run the automated tests

Follow these instructions to execute the project's automated test suite:

  • Create a separate PostgreSQL test database named floodit-test also owned by the floodit user:

    $> sudo -u postgres createdb --owner floodit floodit-test
  • Configure the application for testing:

    • Either set any of the documented environment variables, for example:

      export FLOODIT_TEST_DATABASE_HOST=localhost
      export FLOODIT_TEST_DATABASE_PORT=5432
      export FLOODIT_TEST_DATABASE_NAME=floodit
      export FLOODIT_TEST_DATABASE_USERNAME=floodit
      export FLOODIT_TEST_DATABASE_PASSWORD=mysecretpassword
    • Or create a local configuration file based on the provided sample:

      cp backend/config/application-test.local.sample.yml backend/config/application-test.local.yml

      Edit backend/config/application-test.local.yml with your favorite editor:

      nano backend/config/application-test.local.yml
      vim backend/config/application-test.local.yml

      Read the instructions contained in the file and fill in the database connection parameters.

      The backend/config/application-test.local.yml file will be ignored by Git.

  • Run the automated tests:

    $> mvn clean test

You should see no errors.

For more information, read the tests' source code in the test directory.

Run the application in development mode

You can run the backend application manually by executing the following command from the repository:

mvn spring-boot:run

The backend application runs on port 5000 by default. If that port is already in use, you can use the server.port parameter in the local configuration file or the $FLOODIT_SERVER_PORT environment variable to switch to another port, for example:

$> FLOODIT_SERVER_PORT=5001 mvn spring-boot:run

You can run the frontend application manually by executing the following command from the repository:

$> npm start

The frontend application runs on port 4200 by default. If that port is already in use or you want to use another port, you can add the --port <number> option to switch to another port.

By default, the frontend application is only available locally. Add the --host 0.0.0.0 option to the last command to make it available to external clients.

You must add an additional -- before any other option due to how npm passes options through, for example:

npm start -- --host 0.0.0.0 --port 3000

If you have changed the backend server port to a different port than 5000 you should also set the $FLOODIT_FRONTEND_API_PROXY_PORT variable to the same port number when running the frontend in development mode below, for example:

FLOODIT_FRONTEND_API_PROXY_PORT=5001 npm start -- --host 0.0.0.0 --port 3000

Run the application in production mode

Build the backend application:

mvn clean install -Pskip-test

Build the frontend application:

npm run build

The static web files of the frontend will be saved in the frontend/dist directory:

ls frontend/dist/

Run the backend by executing the packaged JAR file. This must be done from the backend directory in the repository:

cd backend
java -jar target/floodit-1.0.0-SNAPSHOT.jar

You can use your favorite web server and reverse proxy (e.g. Apache/nginx) to serve the frontend's files. /api requests should be proxied to the backend listening on port 5000 (or whatever port you configured).

Updating

To update the application after getting the latest changes, execute the following commands in the application's directory:

# Rebuild the backend application:
$> mvn clean install -Pskip-test

# Update frontend dependencies:
$> npm ci

# Rebuild the frontend application:
$> npm run build

You may then restart the application.

Configuration

You can configure the application in one of two ways:

  • Either create a backend/config/application-default.local.yml file in the application's directory (see the backend/config/application-default.local.sample.yml sample file).
  • Or use the environment variables documented below.

Environment variables

Environment variable Default value Description
FLOODIT_DATABASE_HOST localhost The host at which the PostgreSQL database can be reached.
FLOODIT_DATABASE_PORT 5432 The port at which the PostgreSQL database can be reached.
FLOODIT_DATABASE_NAME floodit The name of the PostgreSQL database.
FLOODIT_DATABASE_USERNAME floodit The PostgreSQL user to connect as.
FLOODIT_DATABASE_PASSWORD - The password of the PostgreSQL user.
FLOODIT_SERVER_PORT 5000 The port the HTTP server listens on.
FLOODIT_FRONTEND_API_PROXY_PORT 5000 The local port the frontend will proxy API requests to when running in development mode.
FLOODIT_TEST_DATABASE_HOST localhost The host at which the PostgreSQL test database can be reached.
FLOODIT_TEST_DATABASE_PORT 5432 The port at which the PostgreSQL test database can be reached.
FLOODIT_TEST_DATABASE_NAME floodit-test The name of the PostgreSQL test database.
FLOODIT_TEST_DATABASE_USERNAME floodit The PostgreSQL user to connect as for the test database.
FLOODIT_TEST_DATABASE_PASSWORD - The password of the PostgreSQL user for the test database.

floodit's People

Contributors

alphahydrae avatar simonpinkas avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.