├── .gitignore ├── README.md ├── nodemon.json ├── package.json ├── src ├── app.ts ├── controllers │ └── photo.controller.ts ├── database.ts ├── index.ts ├── libs │ └── multer.ts ├── models │ └── Photo.ts └── routes │ └── index.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | uploads/ 3 | dist/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/photo-gallery-api/HEAD/README.md -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/photo-gallery-api/HEAD/nodemon.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/photo-gallery-api/HEAD/package.json -------------------------------------------------------------------------------- /src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/photo-gallery-api/HEAD/src/app.ts -------------------------------------------------------------------------------- /src/controllers/photo.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/photo-gallery-api/HEAD/src/controllers/photo.controller.ts -------------------------------------------------------------------------------- /src/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/photo-gallery-api/HEAD/src/database.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/photo-gallery-api/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/libs/multer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/photo-gallery-api/HEAD/src/libs/multer.ts -------------------------------------------------------------------------------- /src/models/Photo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/photo-gallery-api/HEAD/src/models/Photo.ts -------------------------------------------------------------------------------- /src/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/photo-gallery-api/HEAD/src/routes/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/photo-gallery-api/HEAD/tsconfig.json --------------------------------------------------------------------------------