Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dillonkearns/elm-pages-netlify-cms-starter
Starter kit for elm-pages and Netlify CMS.
https://github.com/dillonkearns/elm-pages-netlify-cms-starter
elm elm-pages netlify netlify-cms
Last synced: about 1 month ago
JSON representation
Starter kit for elm-pages and Netlify CMS.
- Host: GitHub
- URL: https://github.com/dillonkearns/elm-pages-netlify-cms-starter
- Owner: dillonkearns
- Created: 2019-09-26T23:08:12.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T22:02:43.000Z (almost 2 years ago)
- Last Synced: 2024-04-15T02:08:01.971Z (9 months ago)
- Topics: elm, elm-pages, netlify, netlify-cms
- Language: Elm
- Homepage: http://elm-pages-netlify-cms.netlify.com
- Size: 5.48 MB
- Stars: 1
- Watchers: 3
- Forks: 3
- Open Issues: 26
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# elm-pages-starter
[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/dillonkearns/elm-pages-netlify-cms-starter&stack=cms)This is an example repo to get you up and running with `elm-pages`.
The entrypoint file is `index.js`. That file imports `src/Main.elm`. The `content` folder is turned into your static pages. The rest is mostly determined by logic in the Elm code! Learn more with the resources below.
## Setup Instructions
Click "Use this template" on this Github page to fork the repo.Or git clone it:
```
git clone [email protected]:dillonkearns/elm-pages-starter.git
```Then install and run the dev server
```
cd elm-pages-starter
npm install
npm start # starts a local dev server using `elm-pages develop`
```From there you can tweak the `content` folder or change the `src/Main.elm` file.
## Learn more about `elm-pages`
- Documentation site: https://elm-pages.com
- [Elm Package docs](https://package.elm-lang.org/packages/dillonkearns/elm-pages/latest/)
- [`elm-pages` blog](https://elm-pages.com/blog)