diff --git a/.env.dist b/.env.dist index 108b00b6c..e143643b9 100644 --- a/.env.dist +++ b/.env.dist @@ -1 +1,2 @@ BASE_URL=http://localhost:3000 +SECRET=secret diff --git a/.gitignore b/.gitignore index e8f682baf..48370ec69 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,8 @@ +/data/db.sqlite + +/daemonise.json +/daemonise.log + # Created by .ignore support plugin (hsz.mobi) ### Node template # Logs diff --git a/README.md b/README.md index b19481412..10085c234 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,7 @@ $ yarn install # configure environment $ cp .env.dist .env $ nano .env +$ node server/initDb.js # serve with hot reload at localhost:3000 $ yarn dev diff --git a/assets/style.scss b/assets/style.scss index c8e6fc1c4..44e5394ed 100644 --- a/assets/style.scss +++ b/assets/style.scss @@ -13,6 +13,11 @@ $container-max-widths: ( ) !default; +$nouns: #0F3974; +$theme-colors: ( + "nouns": $nouns, +); + @import "~bootstrap/scss/functions"; @import "~bootstrap/scss/variables"; @import "~bootstrap/scss/mixins"; @@ -86,3 +91,11 @@ code { padding: .2em; border-radius: $border-radius-sm; } + +@for $columns from 1 through 12 { + .table-fixed-#{$columns} { + th, td { + width: (100% / $columns); + } + } +} diff --git a/components/Footer.vue b/components/Footer.vue index 9fd243403..4af7b2625 100644 --- a/components/Footer.vue +++ b/components/Footer.vue @@ -2,16 +2,30 @@