Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wisehackermonkey/20200224_jumpnotes_simple_v1
jump notes is a simple note keeping app :my second attempt at jumpnotes
https://github.com/wisehackermonkey/20200224_jumpnotes_simple_v1
Last synced: 17 days ago
JSON representation
jump notes is a simple note keeping app :my second attempt at jumpnotes
- Host: GitHub
- URL: https://github.com/wisehackermonkey/20200224_jumpnotes_simple_v1
- Owner: wisehackermonkey
- License: mit
- Created: 2020-02-24T22:06:35.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-12T02:34:31.000Z (about 2 years ago)
- Last Synced: 2024-11-10T12:45:00.474Z (2 months ago)
- Language: JavaScript
- Size: 328 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 20200224_jumpnotes_simple_v1
### jump notes is a simple note keeping app :my second attempt at jumpnotes# [Live demo (live as of 20200516)](http://orancollins.com:4000/)
![](https://i.imgur.com/vbH8SfW.png)
### Run oneliner
```
>docker run -it --rm --name jumpnote -p 80:3000 wisehackermonkey/jumpnotes:latest
```
### *then visit*
```
http://localhost:80 or http://localhost
```
### Docker Run longterm
```
> docker run -d --restart=always --name jumpnote -p 80:3000 wisehackermonkey/jumpnotes:latest
```
### docker build locally
```
>docker build -t jumpnote .
```
### docker run locally
```bash
> docker run -d --name jumpnote -p 80:3000 jumpnote:latest
```### Setup watch folder nodemon with docker (cmd only) works in bash too( i think)
```
>nodemon -e js,html --watch .compiled --watch web --exec "docker stop jumpnote & docker rm jumpnote & docker build -t jumpnote . & docker run -d --name jumpnote -p 80:3000 jumpnote:latest"
```### how to tag
```
>docker tag jumpnote:latest wisehackermonkey/jumpnotes:latest
```
### how to publish
```
>docker push wisehackermonkey/jumpnotes:latest
```