Skip to content

Latest commit

 

History

History
36 lines (25 loc) · 780 Bytes

README.md

File metadata and controls

36 lines (25 loc) · 780 Bytes

ThankYourTeam

Requirements

Installation

  1. Clone the repository.
  2. Create database based on docs/createdatabase.sql script
  3. Create database user according to database settings in conf/application.conf
  4. activator "run 9091"

Running

Point your browser to http://localhost:9091

Nginx proxy

upstream thankyourteam-scala {
    server 127.0.0.1:9091;
}

server {
    listen      80;
    server_name .thankyourteam.com;

    error_log    /wwwroot/logs/thankyourteam/thankyourteam.error.log;
    access_log   /wwwroot/logs/thankyourteam/thankyourteam.access.log;

    location / {
        proxy_pass http://thankyourteam-scala;
    }
}