Skip to content

zalito12/play-todo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Play-Todo

This is an example project made in Play of a one-page application task manager.

https://play-todo.herokuapp.com

Backend

Developed with Play framework, MySql and Ebean

To configure Database edit "/conf/application.conf":

...

db {
  # You can declare as many datasources as you want.
  # By convention, the default datasource is named `default`

  # https://www.playframework.com/documentation/latest/Developing-with-the-H2-Database
  # Default database configuration using MySQL database engine
  # Connect to playdb as playdbuser
  default.driver=com.mysql.jdbc.Driver
  default.url="jdbc:mysql://localhost:3306/play-task?autoReconnect=true&useSSL=false"
  default.username=root
  default.password="password"
  # You can turn on SQL logging for any datasource
  # https://www.playframework.com/documentation/latest/Highlights25#Logging-SQL-statements
  #default.logSql=true
}

Frontend

Made with Bootstrap and Vue.js

All the changes in tasks are made through an API Rest defined in routes.