Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wisehackermonkey/20200225_jumpnotes_v2
simple note taking
https://github.com/wisehackermonkey/20200225_jumpnotes_v2
Last synced: 17 days ago
JSON representation
simple note taking
- Host: GitHub
- URL: https://github.com/wisehackermonkey/20200225_jumpnotes_v2
- Owner: wisehackermonkey
- License: mit
- Created: 2020-02-26T02:28:54.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-12T02:38:53.000Z (about 2 years ago)
- Last Synced: 2024-11-10T12:44:59.827Z (2 months ago)
- Language: JavaScript
- Size: 290 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 20200225_jumpnotes_v2
#### simple note taking app
------
# [Live Demo](http://www.orancollins.com:5000/) [20200516, email me if its down :) ]
![](https://i.imgur.com/3e3nfwm.png)### build the project
```
>npm run compile
```
### Build docker image
```bash
>docker build -t jumpnotes2 .
```### Run Docker locally
```bash
>docker run -i --name jumpnotes2 -p 80:3000 jumpnotes2:latest
```
### Publish docker image
```bash
>docker tag jumpnotes2 wisehackermonkey/jumpnotes2:latest
>docker login
>docker push wisehackermonkey/jumpnotes2:latest
```
### Docker run for hosting
```bash
>docker run -d --name jumpnotes2 -p 80:3000 wisehackermonkey/jumpnotes2:latest
```
### Docker run for hosting with autorestart
```bash
>docker run -d --name jumpnotes2 --restart=always -p 80:3000 wisehackermonkey/jumpnotes2:latest```
NOTE: by default docker sets visiblity of the image to private, [FIX]: go to docker hub and make it publick
Live build docker with nodemon and a watch folder
```bash
>nodemon -e js,html,css --watch .compiled --watch web --exec "docker stop jumpnote2 & docker rm jumpnote2 & docker build -t jumpnote2 . & docker run -d --name jumpnote2 -p 80:3000 jumpnote2:latest"
```