Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixos-search
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0a6369ea8697
Choose a base ref
...
head repository: NixOS/nixos-search
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ec5839f9fd49
Choose a head ref
  • 1 commit
  • 3 files changed
  • 1 contributor

Commits on Jun 4, 2020

  1. 1
    Copy the full SHA
    ec5839f View commit details
Showing with 37 additions and 8 deletions.
  1. +14 −2 src/Main.elm
  2. +8 −6 src/index.js
  3. +15 −0 src/index.scss
16 changes: 14 additions & 2 deletions src/Main.elm
Original file line number Diff line number Diff line change
@@ -13,6 +13,7 @@ import Html
, header
, img
, li
, span
, text
, ul
)
@@ -21,6 +22,7 @@ import Html.Attributes
( class
, classList
, href
, id
, src
)
import Page.Home
@@ -245,8 +247,18 @@ view model =
]
]
, div [ class "container main" ]
[ viewPage model
, footer [] []
[ div [ id "content" ] [ viewPage model ]
, footer
[ class "container text-center" ]
[ div []
[ span [] [ text "Elasticsearch instance graciously provided by " ]
, a [ href "https://bonsai.io" ] [ text "Bonsai" ]
, span [] [ text "." ]
]
, div []
[ span [] [ text "❤️ Thank you ❤️ " ]
]
]
]
]

14 changes: 8 additions & 6 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -4,9 +4,11 @@ require("./index.scss");

const {Elm} = require('./Main');

Elm.Main.init({flags: {
elasticsearchMappingSchemaVersion: process.env.ELASTICSEARCH_MAPPING_SCHEMA_VERSION || 2,
elasticsearchUrl: process.env.ELASTICSEARCH_URL || 'https://nixos-search-5886075189.us-east-1.bonsaisearch.net:443',
elasticsearchUsername : process.env.ELASTICSEARCH_USERNAME || 'z3ZFJ6y2mR',
elasticsearchPassword : process.env.ELASTICSEARCH_PASSWORD || 'ds8CEvALPf9pui7XG'
}});
Elm.Main.init({
flags: {
elasticsearchMappingSchemaVersion: process.env.ELASTICSEARCH_MAPPING_SCHEMA_VERSION || 2,
elasticsearchUrl: process.env.ELASTICSEARCH_URL || 'https://nixos-search-5886075189.us-east-1.bonsaisearch.net:443',
elasticsearchUsername : process.env.ELASTICSEARCH_USERNAME || 'z3ZFJ6y2mR',
elasticsearchPassword : process.env.ELASTICSEARCH_PASSWORD || 'ds8CEvALPf9pui7XG'
}
});
15 changes: 15 additions & 0 deletions src/index.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
body {
position: relative;
min-height: 100vh;
}

#content {
padding-bottom: 4rem;
}

footer {
position: absolute;
bottom: 0;
width: 100%;
height: 4rem;
}

header .navbar {
a.brand {