├── .eslintrc.js ├── .gitignore ├── LICENSE ├── README.md ├── api ├── controllers │ ├── post.js │ └── user.js ├── middleware │ └── authorization.js ├── models │ ├── post.js │ └── user.js └── routes │ ├── post.js │ └── user.js ├── index.js ├── package.json └── temp └── placeholder.jpg /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | "extends": "airbnb-base" 3 | }; -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimpg/venomgram-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimpg/venomgram-server/HEAD/README.md -------------------------------------------------------------------------------- /api/controllers/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimpg/venomgram-server/HEAD/api/controllers/post.js -------------------------------------------------------------------------------- /api/controllers/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimpg/venomgram-server/HEAD/api/controllers/user.js -------------------------------------------------------------------------------- /api/middleware/authorization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimpg/venomgram-server/HEAD/api/middleware/authorization.js -------------------------------------------------------------------------------- /api/models/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimpg/venomgram-server/HEAD/api/models/post.js -------------------------------------------------------------------------------- /api/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimpg/venomgram-server/HEAD/api/models/user.js -------------------------------------------------------------------------------- /api/routes/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimpg/venomgram-server/HEAD/api/routes/post.js -------------------------------------------------------------------------------- /api/routes/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimpg/venomgram-server/HEAD/api/routes/user.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimpg/venomgram-server/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimpg/venomgram-server/HEAD/package.json -------------------------------------------------------------------------------- /temp/placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimpg/venomgram-server/HEAD/temp/placeholder.jpg --------------------------------------------------------------------------------