A social networking for all developers on the world
MIT
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
- NodeJS - A Javascript runtime
A step by step series of examples that tell you how to get a development env running
Say what the step will be
git clone https://github.com/avitryhard/DevVitality.git
cd DevVitality
npm install
cd client
npm install
cd ..
npm run devThen open http://localhost:3000/ to see your app
- DevVitality - Deloyed to Heroku
DevVitality
├── README.md
├── node_modules
├── package.json
├── .gitignore
├── server.js
├── config
│ ├── db.js
│ ├── default.json
│ └── production.json
├── middlewares
│ └──auth.js
├── models
│ ├── Post.js
│ ├── Profile.js
│ └── User.js
├── routes/api
│ ├── auth.js
│ ├── posts.js
│ ├── profile.js
│ └── user.js
└── client
├── node_modules
├── package.json
├── public
│ ├── favicon.ico
│ ├── index.html
│ └── manifest.json
└── src
├── App.css
├── App.js
├── store.js
├── index.js
├── actions
├── components
├── helpers
├── img
├── reducers
└── utils
└── setAuthToken.js

