Add user model through devise. Add some basic layout. Start testing in travis.

This commit is contained in:
2020-08-20 11:01:27 +01:00
parent 1bc17c462a
commit b7b1e2b3fd
45 changed files with 599 additions and 155 deletions
+4
View File
@@ -8,7 +8,11 @@ require("turbolinks").start()
require("@rails/activestorage").start()
require("channels")
global.toastr = require("toastr")
import "../stylesheets/bootstrap"
import "../stylesheets/application"
import 'jquery'
import 'popper.js'
import 'bootstrap'
// Uncomment to copy all static images under ../images to the output folder and reference
// them with the image_pack_tag helper in views (e.g <%= image_pack_tag 'rails.png' %>)
+6 -1
View File
@@ -1 +1,6 @@
@import 'toastr'
@import 'toastr';
body {
height: 100%;
padding-top: 5rem;
}
+2
View File
@@ -0,0 +1,2 @@
@import '~bootstrap/scss/bootstrap.scss';