Skip to content

asaladin/template-site

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TEMPLATE-SITE 0.1.2

The Template Site is a project created by Tetrao, a technology startup company specialized in Internet intelligent process automation. Our mission is enabling connections between people and businesses radically faster in an efficient and cost-effective way.

This is an internal project and we decided to publish it to promote the use of a lot of open source projects we love and we use every day and make our job easier.

You can see this project running here: https://template-site.tetrao.eu/.

Template Site is an skeleton of a web application based on:

The application is a website where you have to login to enter in a restricted page. The restricted page is a messages page, where you can see, add or delete messages that are shared beetween all the users. Also is possible to edit your own user and, if you are and admin user, you can add other non admin users.

Default users are admin@tetrao.eu, the admin user, and bob@tetrao.eu a normal user. Both users have the same password and it is password.

Getting the project

As usual:

git clone https://github.com/tetrao-eu/template-site.git

The following commands are written for a GNU/Linux environment (Debian, if you want to know). So please adapt it to your system if it is necessary. Also they are running supposing that you are locating inside the folder template-site, the root of this project.

Database

Database setup

Check the PostgreSQL website to instalation instructions.

Create a cluster, an user and a database:

sudo -u postgres pg_createcluster -p 55555 --start 9.5 templatesite_cluster
sudo -u postgres psql -p 55555 -c "CREATE USER templatesite_user PASSWORD '123';"
sudo -u postgres psql -p 55555 -c "CREATE DATABASE templatesite_db WITH TEMPLATE = template0 ENCODING = 'UTF8' LC_COLLATE = 'en_US.utf8' LC_CTYPE = 'en_US.utf8';"
sudo -u postgres psql -p 55555 -c "ALTER DATABASE templatesite_db OWNER TO templatesite_user;"

IMPORTANT! If you change any database config value, please remember to update the config file conf/application.conf

Next create the tables and add some data to the database using the script conf/database.sql

sudo -u postgres psql -p 55555 -d templatesite_db -f conf/database.sql

This script will create an account table with two users and a message table with one message.

Database mapping code

The file models.db.Tables.scala contains the database mapping code. It has been generated running the main class utils.db.SourceCodeGenerator. If you want to regenerate the database mapping code for any reason, check the config file conf/application.conf and run:

sbt tables

SBT

To run the project execute:

sbt run

And open a browser with the url http://localhost:9000

The plugin sbt-updates is installed (see plugins.sbt). To check if all the dependencies are up to date, it is necessary to execute:

sbt dependencyUpdates

License

Licensing conditions (MIT) can be found in LICENSE file.

About

Web application based on Play Framework, Play2-auth, Slick, Slick-pg (and Scala, SBT, PostgreSQL, Foundation...)

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Scala 60.3%
  • HTML 38.4%
  • CSS 1.3%