https://github.com/zacoppotamus/hifidelity
Simple movie journal
https://github.com/zacoppotamus/hifidelity
Last synced: 3 months ago
JSON representation
Simple movie journal
- Host: GitHub
- URL: https://github.com/zacoppotamus/hifidelity
- Owner: zacoppotamus
- Created: 2014-03-12T15:15:14.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-04-16T15:04:40.000Z (about 11 years ago)
- Last Synced: 2023-03-22T13:56:29.445Z (about 2 years ago)
- Language: JavaScript
- Homepage: https://hifidelity.herokuapp.com/
- Size: 1.27 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
HiFidelity
==========Simple movie journal.
Installation
---On the root folder do:
* ```npm install```, to install the Node modules.
* ```bower install```, for frontend dependencies.
* ```mongod```, for the MongoDB database.
* ```node server.js```, to start the server.Visit ```127.0.0.1:8080``` to see the application in action.
Database
---The MongoDB default port is on ```127.0.0.1:27017```.
To modify the database from the terminal:
* ```mongo``` to run the Mongo shell, while ```mongod``` is running.
* In the Mongo shell:
* ```use hifidelity```, to choose our database.
* ```db.hifidelities.update({ "title" : "Small Time Crooks", "year" : 2000, "seen" : false })```, or whatever, to add a new movie.For a web overview of our database visit ```http://127.0.0.1:28017/hifidelity/hifidelities/```, where
28017 is the default MongoDB port + 1000.