├── .dockerignore ├── .env.docker ├── .env.manual ├── .github └── workflows │ └── main.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── __tests__ ├── controller │ └── profileController.spec.ts ├── database │ ├── knex.spec.ts │ └── redis.spec.ts └── routes │ └── index.spec.ts ├── database ├── index.ts ├── migrations │ └── 20200812193049_profile.ts └── seeds │ └── profiles.ts ├── docker-compose.yml ├── jest.config.js ├── knexfile.ts ├── logo.png ├── migrate.sh ├── package.json ├── redis.ts ├── src ├── app.ts ├── controllers │ └── profileControllers.ts ├── helper │ └── response.ts ├── models │ └── profile.ts ├── routes │ └── index.ts └── server.ts ├── swagger.json └── tsconfig.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munirapp/express-standard-api/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munirapp/express-standard-api/HEAD/.env.docker -------------------------------------------------------------------------------- /.env.manual: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munirapp/express-standard-api/HEAD/.env.manual -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munirapp/express-standard-api/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munirapp/express-standard-api/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munirapp/express-standard-api/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munirapp/express-standard-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munirapp/express-standard-api/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/controller/profileController.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munirapp/express-standard-api/HEAD/__tests__/controller/profileController.spec.ts -------------------------------------------------------------------------------- /__tests__/database/knex.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munirapp/express-standard-api/HEAD/__tests__/database/knex.spec.ts -------------------------------------------------------------------------------- /__tests__/database/redis.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munirapp/express-standard-api/HEAD/__tests__/database/redis.spec.ts -------------------------------------------------------------------------------- /__tests__/routes/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munirapp/express-standard-api/HEAD/__tests__/routes/index.spec.ts -------------------------------------------------------------------------------- /database/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munirapp/express-standard-api/HEAD/database/index.ts -------------------------------------------------------------------------------- /database/migrations/20200812193049_profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munirapp/express-standard-api/HEAD/database/migrations/20200812193049_profile.ts -------------------------------------------------------------------------------- /database/seeds/profiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munirapp/express-standard-api/HEAD/database/seeds/profiles.ts -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munirapp/express-standard-api/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munirapp/express-standard-api/HEAD/jest.config.js -------------------------------------------------------------------------------- /knexfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munirapp/express-standard-api/HEAD/knexfile.ts -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munirapp/express-standard-api/HEAD/logo.png -------------------------------------------------------------------------------- /migrate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munirapp/express-standard-api/HEAD/migrate.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munirapp/express-standard-api/HEAD/package.json -------------------------------------------------------------------------------- /redis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munirapp/express-standard-api/HEAD/redis.ts -------------------------------------------------------------------------------- /src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munirapp/express-standard-api/HEAD/src/app.ts -------------------------------------------------------------------------------- /src/controllers/profileControllers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munirapp/express-standard-api/HEAD/src/controllers/profileControllers.ts -------------------------------------------------------------------------------- /src/helper/response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munirapp/express-standard-api/HEAD/src/helper/response.ts -------------------------------------------------------------------------------- /src/models/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munirapp/express-standard-api/HEAD/src/models/profile.ts -------------------------------------------------------------------------------- /src/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munirapp/express-standard-api/HEAD/src/routes/index.ts -------------------------------------------------------------------------------- /src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munirapp/express-standard-api/HEAD/src/server.ts -------------------------------------------------------------------------------- /swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munirapp/express-standard-api/HEAD/swagger.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munirapp/express-standard-api/HEAD/tsconfig.json --------------------------------------------------------------------------------