diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..dc9feb4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/dist +/elm-stuff diff --git a/elm.json b/elm.json new file mode 100644 index 0000000..16f847e --- /dev/null +++ b/elm.json @@ -0,0 +1,27 @@ +{ + "type": "application", + "source-directories": [ + "src" + ], + "elm-version": "0.19.1", + "dependencies": { + "direct": { + "elm/browser": "1.0.2", + "elm/core": "1.0.5", + "elm/html": "1.0.0", + "rtfeldman/elm-css": "16.0.1" + }, + "indirect": { + "Skinney/murmur3": "2.0.8", + "elm/json": "1.1.3", + "elm/time": "1.0.0", + "elm/url": "1.0.0", + "elm/virtual-dom": "1.0.2", + "rtfeldman/elm-hex": "1.0.0" + } + }, + "test-dependencies": { + "direct": {}, + "indirect": {} + } +} diff --git a/src/Main.elm b/src/Main.elm new file mode 100644 index 0000000..147936a --- /dev/null +++ b/src/Main.elm @@ -0,0 +1,42 @@ +module Main exposing (..) + +import Browser exposing (Document) + + +type alias Flags = + () + + +type alias Model = + {} + + +type alias Msg = + () + + +init : Flags -> ( Model, Cmd Msg ) +init _ = + ( {}, Cmd.none ) + + +update : Msg -> Model -> ( Model, Cmd Msg ) +update msg model = + ( model, Cmd.none ) + + +view : Model -> Document Msg +view model = + { title = "ELO Anything!" + , body = [] + } + + +main : Program Flags Model Msg +main = + Browser.document + { init = init + , update = update + , view = view + , subscriptions = \_ -> Sub.none + }