Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mgautam98/challenge3
Social networking application
https://github.com/mgautam98/challenge3
Last synced: about 1 month ago
JSON representation
Social networking application
- Host: GitHub
- URL: https://github.com/mgautam98/challenge3
- Owner: mgautam98
- Created: 2018-12-27T16:35:14.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-04-19T07:58:19.000Z (over 4 years ago)
- Last Synced: 2024-10-09T13:23:26.853Z (about 1 month ago)
- Language: HTML
- Homepage: https://team-with-no-name.herokuapp.com/
- Size: 1.88 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# The Team has No Name
### Run locally
Install nodejs form *https://nodejs.org*
Clone the repository~~~~
git clone https://github.com/mgautam98/challenge3.git
cd challenge3
npm install
~~~~Then install and run mongoDB
Run the server```
nodejs app.js
```#### Instructions for Installing MongoDB
Run the following commands
~~~~
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 2930ADAE8CAF5059EE73BB4B58712A2291FA4AD5
echo "deb [ arch=amd64 ] https://repo.mongodb.org/apt/ubuntu trusty/mongodb-org/3.6 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.6.list
sudo apt-get update
sudo apt-get install -y mongodb-org
cd
mkdir data
echo "mongod --dbpath=data --nojournal" > mongod
chmod a+x mongod
~~~~```
./mongod
```