Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cdepillabout/beep-every-second
Simple web page that makes a beep every second. Useful to use as a timer when working out.
https://github.com/cdepillabout/beep-every-second
beep purescript
Last synced: 20 days ago
JSON representation
Simple web page that makes a beep every second. Useful to use as a timer when working out.
- Host: GitHub
- URL: https://github.com/cdepillabout/beep-every-second
- Owner: cdepillabout
- License: bsd-3-clause
- Created: 2021-02-09T01:11:42.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-06-12T09:30:08.000Z (over 3 years ago)
- Last Synced: 2024-11-14T07:46:01.257Z (3 months ago)
- Topics: beep, purescript
- Language: Dhall
- Homepage: https://cdepillabout.github.io/beep-every-second/
- Size: 378 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Beep Every Second
This is a very simple web application that has a button that causes a timer to
beep every second.This is available at: https://cdepillabout.github.io/beep-every-second/
## Developing Locally
This repo can be hacked on by running the following commands.
First, enter into a Nix shell with all dependencies available:
```console
$ nix-shell
```Then, within the nix shell, build the PureScript app with `spago build --watch`:
```console
$ npm run watch
```In a separate console, run Parcel to handle the HTML and JavaScript:
```console
$ npm run serve
```## Publishing to GitHub Pages
Updating the GitHub Pages site linked above can be done with the following command:
```console
$ npm run build-prod
```This updates the release-ready app in `./docs`. Commit these changes to
`master` and the updates will be live.