├── .github ├── dependabot.yml └── workflows │ └── scala.yml ├── .gitignore ├── .scalafmt.conf ├── Makefile ├── README.md ├── project ├── build.properties └── plugins.sbt └── web ├── app ├── controllers │ └── Application.scala └── views │ ├── bootstrapField.scala.html │ ├── create.scala.html │ ├── header.scala.html │ ├── index.scala.html │ ├── main.scala.html │ └── parts │ ├── container.scala.html │ └── well.scala.html ├── conf ├── application.conf ├── db │ └── migration │ │ └── default │ │ ├── V20150409112518__create_users_table.sql │ │ └── V20150409131208__add_user.sql └── routes ├── public ├── javascripts │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery.js │ ├── jquery.min.js │ ├── jquery.min.map │ └── npm.js └── stylesheets │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ └── main.css └── test └── controllers └── ApplicationTest.scala /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tototoshi/sbt-slick-codegen-example/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/scala.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tototoshi/sbt-slick-codegen-example/HEAD/.github/workflows/scala.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tototoshi/sbt-slick-codegen-example/HEAD/.gitignore -------------------------------------------------------------------------------- /.scalafmt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tototoshi/sbt-slick-codegen-example/HEAD/.scalafmt.conf -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tototoshi/sbt-slick-codegen-example/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tototoshi/sbt-slick-codegen-example/HEAD/README.md -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.9.9 -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tototoshi/sbt-slick-codegen-example/HEAD/project/plugins.sbt -------------------------------------------------------------------------------- /web/app/controllers/Application.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tototoshi/sbt-slick-codegen-example/HEAD/web/app/controllers/Application.scala -------------------------------------------------------------------------------- /web/app/views/bootstrapField.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tototoshi/sbt-slick-codegen-example/HEAD/web/app/views/bootstrapField.scala.html -------------------------------------------------------------------------------- /web/app/views/create.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tototoshi/sbt-slick-codegen-example/HEAD/web/app/views/create.scala.html -------------------------------------------------------------------------------- /web/app/views/header.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tototoshi/sbt-slick-codegen-example/HEAD/web/app/views/header.scala.html -------------------------------------------------------------------------------- /web/app/views/index.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tototoshi/sbt-slick-codegen-example/HEAD/web/app/views/index.scala.html -------------------------------------------------------------------------------- /web/app/views/main.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tototoshi/sbt-slick-codegen-example/HEAD/web/app/views/main.scala.html -------------------------------------------------------------------------------- /web/app/views/parts/container.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tototoshi/sbt-slick-codegen-example/HEAD/web/app/views/parts/container.scala.html -------------------------------------------------------------------------------- /web/app/views/parts/well.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tototoshi/sbt-slick-codegen-example/HEAD/web/app/views/parts/well.scala.html -------------------------------------------------------------------------------- /web/conf/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tototoshi/sbt-slick-codegen-example/HEAD/web/conf/application.conf -------------------------------------------------------------------------------- /web/conf/db/migration/default/V20150409112518__create_users_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tototoshi/sbt-slick-codegen-example/HEAD/web/conf/db/migration/default/V20150409112518__create_users_table.sql -------------------------------------------------------------------------------- /web/conf/db/migration/default/V20150409131208__add_user.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tototoshi/sbt-slick-codegen-example/HEAD/web/conf/db/migration/default/V20150409131208__add_user.sql -------------------------------------------------------------------------------- /web/conf/routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tototoshi/sbt-slick-codegen-example/HEAD/web/conf/routes -------------------------------------------------------------------------------- /web/public/javascripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tototoshi/sbt-slick-codegen-example/HEAD/web/public/javascripts/bootstrap.js -------------------------------------------------------------------------------- /web/public/javascripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tototoshi/sbt-slick-codegen-example/HEAD/web/public/javascripts/bootstrap.min.js -------------------------------------------------------------------------------- /web/public/javascripts/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tototoshi/sbt-slick-codegen-example/HEAD/web/public/javascripts/jquery.js -------------------------------------------------------------------------------- /web/public/javascripts/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tototoshi/sbt-slick-codegen-example/HEAD/web/public/javascripts/jquery.min.js -------------------------------------------------------------------------------- /web/public/javascripts/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tototoshi/sbt-slick-codegen-example/HEAD/web/public/javascripts/jquery.min.map -------------------------------------------------------------------------------- /web/public/javascripts/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tototoshi/sbt-slick-codegen-example/HEAD/web/public/javascripts/npm.js -------------------------------------------------------------------------------- /web/public/stylesheets/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tototoshi/sbt-slick-codegen-example/HEAD/web/public/stylesheets/bootstrap-theme.css -------------------------------------------------------------------------------- /web/public/stylesheets/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tototoshi/sbt-slick-codegen-example/HEAD/web/public/stylesheets/bootstrap-theme.css.map -------------------------------------------------------------------------------- /web/public/stylesheets/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tototoshi/sbt-slick-codegen-example/HEAD/web/public/stylesheets/bootstrap-theme.min.css -------------------------------------------------------------------------------- /web/public/stylesheets/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tototoshi/sbt-slick-codegen-example/HEAD/web/public/stylesheets/bootstrap.css -------------------------------------------------------------------------------- /web/public/stylesheets/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tototoshi/sbt-slick-codegen-example/HEAD/web/public/stylesheets/bootstrap.css.map -------------------------------------------------------------------------------- /web/public/stylesheets/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tototoshi/sbt-slick-codegen-example/HEAD/web/public/stylesheets/bootstrap.min.css -------------------------------------------------------------------------------- /web/public/stylesheets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tototoshi/sbt-slick-codegen-example/HEAD/web/public/stylesheets/main.css -------------------------------------------------------------------------------- /web/test/controllers/ApplicationTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tototoshi/sbt-slick-codegen-example/HEAD/web/test/controllers/ApplicationTest.scala --------------------------------------------------------------------------------