Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shnewto/drinkspiller.com
https://github.com/shnewto/drinkspiller.com
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/shnewto/drinkspiller.com
- Owner: shnewto
- Created: 2022-03-24T23:01:28.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-22T23:47:56.000Z (about 2 years ago)
- Last Synced: 2024-10-09T06:41:03.626Z (3 months ago)
- Language: Elm
- Homepage: https://drinkspiller.com
- Size: 2.07 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# drinkspiller
> tracking some of the stuff i've been up to
## developing
### note
this site's media isn't tracked in this repo
### dependencies
- latest lts (as of 2022) version of [node.js](https://nodejs.org/)
- elm-spa```bash
npm install -g elm elm-spa
```### running locally
```bash
elm-spa server # starts app at http:/localhost:1234
```### deploying
#### build to deploy
```bash
elm-spa build
```#### local vercel
```bash
vercel dev
```#### staging
```bash
vercel
```#### release
```bash
vercel --prod
```### other commands
```bash
elm-spa add # add a new page to the application
elm-spa build # production build
elm-spa watch # runs build as you code (without the server)
```