Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/not-lain/node_idea_matcher

node app to check for similar ideas
https://github.com/not-lain/node_idea_matcher

docker ejs expressjs nodejs

Last synced: about 2 months ago
JSON representation

node app to check for similar ideas

Awesome Lists containing this project

README

        

# node_idea_matcher

### how to install dependencies :
* * install node
* * cd into project
* * `npm install`

### how to run :
```
npm start
```
open : http://localhost:3000

### how to build a docker image

```
docker build -t my-node-app .
```
### how to run from docker image
```
docker run -d -p 3000:3000 my-node-app
```

### how to stop the docker image
find `CONTAINER_ID` with the first command then stop your container
```
docker container ls
docker stop [CONTAINER_ID]
```