Skip to content

fraktio/thankyourteam-scala

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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;
    }
}

About

Scala application to allow people to send their thank you's and create pre-filled Twitter messages.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published