Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/not-lain/node_idea_matcher
- Owner: not-lain
- Created: 2023-01-08T11:39:50.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-15T19:01:41.000Z (almost 2 years ago)
- Last Synced: 2024-11-24T20:39:21.021Z (about 2 months ago)
- Topics: docker, ejs, expressjs, nodejs
- Language: EJS
- Homepage:
- Size: 1.15 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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]
```