├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | target/ 3 | /test-dbs/*-* 4 | /test-dbs/databases.properties 5 | *.log 6 | *.iml 7 | /\.target/ 8 | /\.cache 9 | /\.project 10 | /\.classpath 11 | /\.settings 12 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Starting with Slick 2.1, the separate example projects like this one have been 2 | replaced by Activator templates. Please see the "Getting Started" chapter in the 3 | [Slick documentation](http://slick.typesafe.com/docs/) for details. 4 | 5 | You can still find older versions of this project for older Slick releases 6 | under the respective tags. 7 | --------------------------------------------------------------------------------