https://github.com/mremond/go-elm
Bootstrap app to get started quickly with Go + Elm application
https://github.com/mremond/go-elm
elm elm-lang go golang
Last synced: about 1 year ago
JSON representation
Bootstrap app to get started quickly with Go + Elm application
- Host: GitHub
- URL: https://github.com/mremond/go-elm
- Owner: mremond
- License: bsd-3-clause
- Created: 2017-03-05T15:54:09.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-04-09T16:04:17.000Z (about 9 years ago)
- Last Synced: 2025-04-04T00:09:35.845Z (over 1 year ago)
- Topics: elm, elm-lang, go, golang
- Language: Go
- Size: 4.88 KB
- Stars: 20
- Watchers: 1
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# go-elm
Bootstrap app to get started quickly with Go + Elm application.
## Requirements
Install Elm and Go.
## Compiling
First, install the required Elm packages:
```
elm-package install
```
Then, you can build your application and the Go server that is going to serve your Elm content.
```
elm-make ./elm-src/App.elm --output static/js/app.js
go build server/server.go
```
### Running the server
```
./server
```