├── .editorconfig ├── .env.example ├── .eslintignore ├── .eslintrc ├── .gitignore ├── LICENSE ├── README.md ├── api └── .gitkeep ├── config ├── database.js ├── env │ └── production │ │ ├── database.js │ │ ├── middleware.js │ │ └── server.js ├── functions │ ├── bootstrap.js │ ├── cron.js │ └── responses │ │ └── 404.js └── server.js ├── extensions ├── .gitkeep └── users-permissions │ └── config │ └── jwt.js ├── favicon.ico ├── package.json ├── public ├── robots.txt └── uploads │ └── .gitkeep ├── render.yaml └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/strapi-postgres/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/strapi-postgres/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | .cache 2 | build 3 | **/node_modules/** 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/strapi-postgres/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/strapi-postgres/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/strapi-postgres/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/strapi-postgres/HEAD/README.md -------------------------------------------------------------------------------- /api/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/strapi-postgres/HEAD/config/database.js -------------------------------------------------------------------------------- /config/env/production/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/strapi-postgres/HEAD/config/env/production/database.js -------------------------------------------------------------------------------- /config/env/production/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/strapi-postgres/HEAD/config/env/production/middleware.js -------------------------------------------------------------------------------- /config/env/production/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/strapi-postgres/HEAD/config/env/production/server.js -------------------------------------------------------------------------------- /config/functions/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/strapi-postgres/HEAD/config/functions/bootstrap.js -------------------------------------------------------------------------------- /config/functions/cron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/strapi-postgres/HEAD/config/functions/cron.js -------------------------------------------------------------------------------- /config/functions/responses/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/strapi-postgres/HEAD/config/functions/responses/404.js -------------------------------------------------------------------------------- /config/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/strapi-postgres/HEAD/config/server.js -------------------------------------------------------------------------------- /extensions/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/users-permissions/config/jwt.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | jwtSecret: process.env.JWT_SECRET || 'b4dbad35-6caa-4f84-be56-90d0d3bc2fdf' 3 | }; -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/strapi-postgres/HEAD/favicon.ico -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/strapi-postgres/HEAD/package.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/strapi-postgres/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/uploads/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /render.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/strapi-postgres/HEAD/render.yaml -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/strapi-postgres/HEAD/yarn.lock --------------------------------------------------------------------------------