https://github.com/duckthom/node-pastebin
Socket.IO + ExpressJS + Ace Editor
https://github.com/duckthom/node-pastebin
Last synced: 5 months ago
JSON representation
Socket.IO + ExpressJS + Ace Editor
- Host: GitHub
- URL: https://github.com/duckthom/node-pastebin
- Owner: DuckThom
- Created: 2017-08-30T12:56:32.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-09-02T14:53:02.000Z (almost 9 years ago)
- Last Synced: 2024-12-29T16:45:55.627Z (over 1 year ago)
- Language: CSS
- Homepage:
- Size: 128 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# node-pastebin
======
## Info
Database: `./db.sqlite`
## Running
- `yarn` or `npm install`
- `yarn start` or `npm run start`
- Go to `http://localhost:3000`
## Docker
When mounting the node_modules folder, the modules do not need to be re-installed when starting a new container each time.
```
docker run -it \
-p 3000:3000 \
-v /path/to/node_modules:/app/node_modules \
lunamoonfang/node-pastebin
```