├── .babelrc ├── .env.example ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── components ├── ArticlePaper │ └── index.tsx ├── Layout │ ├── Admin │ │ ├── AppBar │ │ │ └── index.tsx │ │ └── index.tsx │ ├── ElevationScroll │ │ └── index.tsx │ ├── General │ │ ├── AppBar │ │ │ └── index.tsx │ │ └── index.tsx │ └── index.ts ├── Link │ └── index.tsx ├── Page │ ├── Admin │ │ ├── Home │ │ │ └── index.tsx │ │ ├── Login │ │ │ └── index.tsx │ │ └── index.ts │ ├── General │ │ ├── Home │ │ │ └── index.tsx │ │ └── index.ts │ └── index.ts └── index.ts ├── ecosystem.config.js ├── entities ├── article.entity.ts ├── session.entity.ts └── view.entity.ts ├── examples ├── basic-auth │ ├── .env.example │ ├── LICENSE │ ├── README.md │ ├── components │ │ └── Link │ │ │ └── index.tsx │ ├── interfaces │ │ └── index.ts │ ├── lib │ │ ├── http-client.ts │ │ └── theme.ts │ ├── next-env.d.ts │ ├── next.config.js │ ├── nodemon.json │ ├── package.json │ ├── pages │ │ ├── _app.tsx │ │ ├── _document.tsx │ │ ├── auth │ │ │ ├── login.tsx │ │ │ └── register.tsx │ │ └── index.tsx │ ├── server │ │ ├── app.module.ts │ │ ├── entities │ │ │ ├── entity.module.ts │ │ │ ├── session.entity.ts │ │ │ ├── typeorm.service.ts │ │ │ └── user.entity.ts │ │ ├── logics │ │ │ ├── auth │ │ │ │ ├── auth.module.ts │ │ │ │ ├── auth.service.ts │ │ │ │ ├── guards │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── login.guard.ts │ │ │ │ │ └── register.guard.ts │ │ │ │ ├── middlewares │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── redirect-if-authenticated.middleware.ts │ │ │ │ │ └── redirect-if-not-authenticated.middleware.ts │ │ │ │ └── strategies │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── local-login.strategy.ts │ │ │ │ │ └── local-register.strategy.ts │ │ │ ├── env │ │ │ │ ├── env.module.ts │ │ │ │ └── env.service.ts │ │ │ ├── logic.module.ts │ │ │ ├── session │ │ │ │ └── session.module.ts │ │ │ └── user │ │ │ │ ├── dto │ │ │ │ └── create-user.dto.ts │ │ │ │ ├── user.module.ts │ │ │ │ └── user.service.ts │ │ ├── main.ts │ │ └── routes │ │ │ ├── api │ │ │ └── auth.controller.ts │ │ │ ├── auth.controller.ts │ │ │ ├── home.controller.ts │ │ │ └── route.module.ts │ ├── static │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-384x384.png │ │ ├── apple-touch-icon.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── icon.png │ │ ├── mstile-150x150.png │ │ ├── safari-pinned-tab.svg │ │ └── site.webmanifest │ ├── tsconfig.json │ └── tsconfig.server.json ├── basic │ ├── LICENSE │ ├── README.md │ ├── next-env.d.ts │ ├── package.json │ ├── pages │ │ └── index.tsx │ ├── server │ │ ├── app.controller.ts │ │ ├── app.module.ts │ │ └── main.ts │ ├── tsconfig.json │ └── tsconfig.server.json ├── use-favicon │ ├── LICENSE │ ├── README.md │ ├── next-env.d.ts │ ├── package.json │ ├── pages │ │ ├── _document.tsx │ │ └── index.tsx │ ├── server │ │ ├── app.controller.ts │ │ ├── app.module.ts │ │ └── main.ts │ ├── static │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-384x384.png │ │ ├── apple-touch-icon.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── icon.png │ │ ├── mstile-150x150.png │ │ ├── safari-pinned-tab.svg │ │ └── site.webmanifest │ ├── tsconfig.json │ └── tsconfig.server.json ├── with-express-material-ui │ ├── LICENSE │ ├── README.md │ ├── components │ │ ├── Link.tsx │ │ └── theme.ts │ ├── next-env.d.ts │ ├── nodemon.json │ ├── package.json │ ├── pages │ │ ├── _app.tsx │ │ ├── _document.tsx │ │ ├── index.tsx │ │ └── next.tsx │ ├── server │ │ ├── app.controller.ts │ │ ├── app.module.ts │ │ └── main.ts │ ├── static │ │ └── logo.png │ ├── tsconfig.json │ └── tsconfig.server.json ├── with-express │ ├── LICENSE │ ├── README.md │ ├── next-env.d.ts │ ├── nodemon.json │ ├── package.json │ ├── pages │ │ └── index.tsx │ ├── server │ │ ├── app.controller.ts │ │ ├── app.module.ts │ │ └── main.ts │ ├── tsconfig.json │ └── tsconfig.server.json └── with-nodemon │ ├── LICENSE │ ├── README.md │ ├── next-env.d.ts │ ├── nodemon.json │ ├── package.json │ ├── pages │ └── index.tsx │ ├── server │ ├── app.controller.ts │ ├── app.module.ts │ └── main.ts │ ├── tsconfig.json │ └── tsconfig.server.json ├── lerna.json ├── lib ├── fonts │ └── index.ts ├── http │ └── index.ts ├── index.ts ├── responsive │ └── index.ts └── theme │ └── index.ts ├── next-env.d.ts ├── next.config.js ├── nodemon.json ├── package.json ├── packages ├── next │ ├── LICENSE │ ├── README.md │ ├── lib │ │ ├── index.ts │ │ ├── next.middleware.ts │ │ ├── next.module.ts │ │ └── next.service.ts │ ├── package.json │ └── tsconfig.json └── postgres-express-session │ ├── LICENSE │ ├── README.md │ ├── lib │ ├── index.ts │ ├── postgres-express-session.entity.ts │ └── postgres-express-session.module.ts │ ├── package.json │ └── tsconfig.json ├── pages ├── _app.tsx ├── _document.tsx ├── admin │ ├── index.tsx │ └── login.tsx └── index.tsx ├── public ├── favicon.ico └── images │ ├── apple-touch-icon.png │ └── icon.png ├── server ├── app.module.ts ├── logics │ ├── article │ │ ├── article.module.ts │ │ ├── article.service.ts │ │ └── dto │ │ │ └── create-article.dto.ts │ ├── auth │ │ ├── auth.module.ts │ │ ├── auth.service.ts │ │ ├── guards │ │ │ ├── index.ts │ │ │ └── login.guard.ts │ │ ├── middlewares │ │ │ ├── api-auth.middleware.ts │ │ │ ├── index.ts │ │ │ ├── redirect-if-authenticated.middleware.ts │ │ │ └── redirect-if-not-authenticated.middleware.ts │ │ └── strategies │ │ │ ├── index.ts │ │ │ └── local-login.strategy.ts │ ├── database │ │ └── typeorm.service.ts │ ├── env │ │ ├── env.module.ts │ │ └── env.service.ts │ ├── logic.module.ts │ └── session │ │ └── session.module.ts ├── main.ts └── routes │ ├── admin │ └── home.controller.ts │ ├── api │ ├── admin │ │ ├── auth.controller.ts │ │ └── me.controller.ts │ └── general │ │ └── article.controller.ts │ ├── general │ └── home.controller.ts │ └── route.module.ts ├── tsconfig.json ├── tsconfig.server.json └── tslint.json /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/.babelrc -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/README.md -------------------------------------------------------------------------------- /components/ArticlePaper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/components/ArticlePaper/index.tsx -------------------------------------------------------------------------------- /components/Layout/Admin/AppBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/components/Layout/Admin/AppBar/index.tsx -------------------------------------------------------------------------------- /components/Layout/Admin/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/components/Layout/Admin/index.tsx -------------------------------------------------------------------------------- /components/Layout/ElevationScroll/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/components/Layout/ElevationScroll/index.tsx -------------------------------------------------------------------------------- /components/Layout/General/AppBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/components/Layout/General/AppBar/index.tsx -------------------------------------------------------------------------------- /components/Layout/General/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/components/Layout/General/index.tsx -------------------------------------------------------------------------------- /components/Layout/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/components/Layout/index.ts -------------------------------------------------------------------------------- /components/Link/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/components/Link/index.tsx -------------------------------------------------------------------------------- /components/Page/Admin/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/components/Page/Admin/Home/index.tsx -------------------------------------------------------------------------------- /components/Page/Admin/Login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/components/Page/Admin/Login/index.tsx -------------------------------------------------------------------------------- /components/Page/Admin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/components/Page/Admin/index.ts -------------------------------------------------------------------------------- /components/Page/General/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/components/Page/General/Home/index.tsx -------------------------------------------------------------------------------- /components/Page/General/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Home'; 2 | -------------------------------------------------------------------------------- /components/Page/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/components/Page/index.ts -------------------------------------------------------------------------------- /components/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Page'; 2 | -------------------------------------------------------------------------------- /ecosystem.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/ecosystem.config.js -------------------------------------------------------------------------------- /entities/article.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/entities/article.entity.ts -------------------------------------------------------------------------------- /entities/session.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/entities/session.entity.ts -------------------------------------------------------------------------------- /entities/view.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/entities/view.entity.ts -------------------------------------------------------------------------------- /examples/basic-auth/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/.env.example -------------------------------------------------------------------------------- /examples/basic-auth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/LICENSE -------------------------------------------------------------------------------- /examples/basic-auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/README.md -------------------------------------------------------------------------------- /examples/basic-auth/components/Link/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/components/Link/index.tsx -------------------------------------------------------------------------------- /examples/basic-auth/interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/interfaces/index.ts -------------------------------------------------------------------------------- /examples/basic-auth/lib/http-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/lib/http-client.ts -------------------------------------------------------------------------------- /examples/basic-auth/lib/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/lib/theme.ts -------------------------------------------------------------------------------- /examples/basic-auth/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/next-env.d.ts -------------------------------------------------------------------------------- /examples/basic-auth/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/next.config.js -------------------------------------------------------------------------------- /examples/basic-auth/nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/nodemon.json -------------------------------------------------------------------------------- /examples/basic-auth/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/package.json -------------------------------------------------------------------------------- /examples/basic-auth/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/pages/_app.tsx -------------------------------------------------------------------------------- /examples/basic-auth/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/pages/_document.tsx -------------------------------------------------------------------------------- /examples/basic-auth/pages/auth/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/pages/auth/login.tsx -------------------------------------------------------------------------------- /examples/basic-auth/pages/auth/register.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/pages/auth/register.tsx -------------------------------------------------------------------------------- /examples/basic-auth/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/pages/index.tsx -------------------------------------------------------------------------------- /examples/basic-auth/server/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/server/app.module.ts -------------------------------------------------------------------------------- /examples/basic-auth/server/entities/entity.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/server/entities/entity.module.ts -------------------------------------------------------------------------------- /examples/basic-auth/server/entities/session.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/server/entities/session.entity.ts -------------------------------------------------------------------------------- /examples/basic-auth/server/entities/typeorm.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/server/entities/typeorm.service.ts -------------------------------------------------------------------------------- /examples/basic-auth/server/entities/user.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/server/entities/user.entity.ts -------------------------------------------------------------------------------- /examples/basic-auth/server/logics/auth/auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/server/logics/auth/auth.module.ts -------------------------------------------------------------------------------- /examples/basic-auth/server/logics/auth/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/server/logics/auth/auth.service.ts -------------------------------------------------------------------------------- /examples/basic-auth/server/logics/auth/guards/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/server/logics/auth/guards/index.ts -------------------------------------------------------------------------------- /examples/basic-auth/server/logics/auth/guards/login.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/server/logics/auth/guards/login.guard.ts -------------------------------------------------------------------------------- /examples/basic-auth/server/logics/auth/guards/register.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/server/logics/auth/guards/register.guard.ts -------------------------------------------------------------------------------- /examples/basic-auth/server/logics/auth/middlewares/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/server/logics/auth/middlewares/index.ts -------------------------------------------------------------------------------- /examples/basic-auth/server/logics/auth/middlewares/redirect-if-authenticated.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/server/logics/auth/middlewares/redirect-if-authenticated.middleware.ts -------------------------------------------------------------------------------- /examples/basic-auth/server/logics/auth/middlewares/redirect-if-not-authenticated.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/server/logics/auth/middlewares/redirect-if-not-authenticated.middleware.ts -------------------------------------------------------------------------------- /examples/basic-auth/server/logics/auth/strategies/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/server/logics/auth/strategies/index.ts -------------------------------------------------------------------------------- /examples/basic-auth/server/logics/auth/strategies/local-login.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/server/logics/auth/strategies/local-login.strategy.ts -------------------------------------------------------------------------------- /examples/basic-auth/server/logics/auth/strategies/local-register.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/server/logics/auth/strategies/local-register.strategy.ts -------------------------------------------------------------------------------- /examples/basic-auth/server/logics/env/env.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/server/logics/env/env.module.ts -------------------------------------------------------------------------------- /examples/basic-auth/server/logics/env/env.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/server/logics/env/env.service.ts -------------------------------------------------------------------------------- /examples/basic-auth/server/logics/logic.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/server/logics/logic.module.ts -------------------------------------------------------------------------------- /examples/basic-auth/server/logics/session/session.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/server/logics/session/session.module.ts -------------------------------------------------------------------------------- /examples/basic-auth/server/logics/user/dto/create-user.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/server/logics/user/dto/create-user.dto.ts -------------------------------------------------------------------------------- /examples/basic-auth/server/logics/user/user.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/server/logics/user/user.module.ts -------------------------------------------------------------------------------- /examples/basic-auth/server/logics/user/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/server/logics/user/user.service.ts -------------------------------------------------------------------------------- /examples/basic-auth/server/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/server/main.ts -------------------------------------------------------------------------------- /examples/basic-auth/server/routes/api/auth.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/server/routes/api/auth.controller.ts -------------------------------------------------------------------------------- /examples/basic-auth/server/routes/auth.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/server/routes/auth.controller.ts -------------------------------------------------------------------------------- /examples/basic-auth/server/routes/home.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/server/routes/home.controller.ts -------------------------------------------------------------------------------- /examples/basic-auth/server/routes/route.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/server/routes/route.module.ts -------------------------------------------------------------------------------- /examples/basic-auth/static/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/static/android-chrome-192x192.png -------------------------------------------------------------------------------- /examples/basic-auth/static/android-chrome-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/static/android-chrome-384x384.png -------------------------------------------------------------------------------- /examples/basic-auth/static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/static/apple-touch-icon.png -------------------------------------------------------------------------------- /examples/basic-auth/static/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/static/browserconfig.xml -------------------------------------------------------------------------------- /examples/basic-auth/static/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/static/favicon-16x16.png -------------------------------------------------------------------------------- /examples/basic-auth/static/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/static/favicon-32x32.png -------------------------------------------------------------------------------- /examples/basic-auth/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/static/favicon.ico -------------------------------------------------------------------------------- /examples/basic-auth/static/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/static/icon.png -------------------------------------------------------------------------------- /examples/basic-auth/static/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/static/mstile-150x150.png -------------------------------------------------------------------------------- /examples/basic-auth/static/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/static/safari-pinned-tab.svg -------------------------------------------------------------------------------- /examples/basic-auth/static/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/static/site.webmanifest -------------------------------------------------------------------------------- /examples/basic-auth/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/tsconfig.json -------------------------------------------------------------------------------- /examples/basic-auth/tsconfig.server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic-auth/tsconfig.server.json -------------------------------------------------------------------------------- /examples/basic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic/LICENSE -------------------------------------------------------------------------------- /examples/basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic/README.md -------------------------------------------------------------------------------- /examples/basic/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic/next-env.d.ts -------------------------------------------------------------------------------- /examples/basic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic/package.json -------------------------------------------------------------------------------- /examples/basic/pages/index.tsx: -------------------------------------------------------------------------------- 1 | export default () => ( 2 |
Next.js on top of NestJS!
3 | ); 4 | -------------------------------------------------------------------------------- /examples/basic/server/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic/server/app.controller.ts -------------------------------------------------------------------------------- /examples/basic/server/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic/server/app.module.ts -------------------------------------------------------------------------------- /examples/basic/server/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic/server/main.ts -------------------------------------------------------------------------------- /examples/basic/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic/tsconfig.json -------------------------------------------------------------------------------- /examples/basic/tsconfig.server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/basic/tsconfig.server.json -------------------------------------------------------------------------------- /examples/use-favicon/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/use-favicon/LICENSE -------------------------------------------------------------------------------- /examples/use-favicon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/use-favicon/README.md -------------------------------------------------------------------------------- /examples/use-favicon/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/use-favicon/next-env.d.ts -------------------------------------------------------------------------------- /examples/use-favicon/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/use-favicon/package.json -------------------------------------------------------------------------------- /examples/use-favicon/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/use-favicon/pages/_document.tsx -------------------------------------------------------------------------------- /examples/use-favicon/pages/index.tsx: -------------------------------------------------------------------------------- 1 | export default () => ( 2 |Next.js on top of NestJS!
3 | ); 4 | -------------------------------------------------------------------------------- /examples/use-favicon/server/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/use-favicon/server/app.controller.ts -------------------------------------------------------------------------------- /examples/use-favicon/server/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/use-favicon/server/app.module.ts -------------------------------------------------------------------------------- /examples/use-favicon/server/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/use-favicon/server/main.ts -------------------------------------------------------------------------------- /examples/use-favicon/static/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/use-favicon/static/android-chrome-192x192.png -------------------------------------------------------------------------------- /examples/use-favicon/static/android-chrome-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/use-favicon/static/android-chrome-384x384.png -------------------------------------------------------------------------------- /examples/use-favicon/static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/use-favicon/static/apple-touch-icon.png -------------------------------------------------------------------------------- /examples/use-favicon/static/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/use-favicon/static/browserconfig.xml -------------------------------------------------------------------------------- /examples/use-favicon/static/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/use-favicon/static/favicon-16x16.png -------------------------------------------------------------------------------- /examples/use-favicon/static/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/use-favicon/static/favicon-32x32.png -------------------------------------------------------------------------------- /examples/use-favicon/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/use-favicon/static/favicon.ico -------------------------------------------------------------------------------- /examples/use-favicon/static/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/use-favicon/static/icon.png -------------------------------------------------------------------------------- /examples/use-favicon/static/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/use-favicon/static/mstile-150x150.png -------------------------------------------------------------------------------- /examples/use-favicon/static/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/use-favicon/static/safari-pinned-tab.svg -------------------------------------------------------------------------------- /examples/use-favicon/static/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/use-favicon/static/site.webmanifest -------------------------------------------------------------------------------- /examples/use-favicon/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/use-favicon/tsconfig.json -------------------------------------------------------------------------------- /examples/use-favicon/tsconfig.server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/use-favicon/tsconfig.server.json -------------------------------------------------------------------------------- /examples/with-express-material-ui/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/with-express-material-ui/LICENSE -------------------------------------------------------------------------------- /examples/with-express-material-ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/with-express-material-ui/README.md -------------------------------------------------------------------------------- /examples/with-express-material-ui/components/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/with-express-material-ui/components/Link.tsx -------------------------------------------------------------------------------- /examples/with-express-material-ui/components/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/with-express-material-ui/components/theme.ts -------------------------------------------------------------------------------- /examples/with-express-material-ui/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/with-express-material-ui/next-env.d.ts -------------------------------------------------------------------------------- /examples/with-express-material-ui/nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/with-express-material-ui/nodemon.json -------------------------------------------------------------------------------- /examples/with-express-material-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/with-express-material-ui/package.json -------------------------------------------------------------------------------- /examples/with-express-material-ui/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/with-express-material-ui/pages/_app.tsx -------------------------------------------------------------------------------- /examples/with-express-material-ui/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/with-express-material-ui/pages/_document.tsx -------------------------------------------------------------------------------- /examples/with-express-material-ui/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/with-express-material-ui/pages/index.tsx -------------------------------------------------------------------------------- /examples/with-express-material-ui/pages/next.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/with-express-material-ui/pages/next.tsx -------------------------------------------------------------------------------- /examples/with-express-material-ui/server/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/with-express-material-ui/server/app.controller.ts -------------------------------------------------------------------------------- /examples/with-express-material-ui/server/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/with-express-material-ui/server/app.module.ts -------------------------------------------------------------------------------- /examples/with-express-material-ui/server/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/with-express-material-ui/server/main.ts -------------------------------------------------------------------------------- /examples/with-express-material-ui/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/with-express-material-ui/static/logo.png -------------------------------------------------------------------------------- /examples/with-express-material-ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/with-express-material-ui/tsconfig.json -------------------------------------------------------------------------------- /examples/with-express-material-ui/tsconfig.server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/with-express-material-ui/tsconfig.server.json -------------------------------------------------------------------------------- /examples/with-express/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/with-express/LICENSE -------------------------------------------------------------------------------- /examples/with-express/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/with-express/README.md -------------------------------------------------------------------------------- /examples/with-express/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/with-express/next-env.d.ts -------------------------------------------------------------------------------- /examples/with-express/nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/with-express/nodemon.json -------------------------------------------------------------------------------- /examples/with-express/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/with-express/package.json -------------------------------------------------------------------------------- /examples/with-express/pages/index.tsx: -------------------------------------------------------------------------------- 1 | export default () => ( 2 |Next.js on top of NestJS!
3 | ); 4 | -------------------------------------------------------------------------------- /examples/with-express/server/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/with-express/server/app.controller.ts -------------------------------------------------------------------------------- /examples/with-express/server/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/with-express/server/app.module.ts -------------------------------------------------------------------------------- /examples/with-express/server/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/with-express/server/main.ts -------------------------------------------------------------------------------- /examples/with-express/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/with-express/tsconfig.json -------------------------------------------------------------------------------- /examples/with-express/tsconfig.server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/with-express/tsconfig.server.json -------------------------------------------------------------------------------- /examples/with-nodemon/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/with-nodemon/LICENSE -------------------------------------------------------------------------------- /examples/with-nodemon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/with-nodemon/README.md -------------------------------------------------------------------------------- /examples/with-nodemon/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/with-nodemon/next-env.d.ts -------------------------------------------------------------------------------- /examples/with-nodemon/nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/with-nodemon/nodemon.json -------------------------------------------------------------------------------- /examples/with-nodemon/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/with-nodemon/package.json -------------------------------------------------------------------------------- /examples/with-nodemon/pages/index.tsx: -------------------------------------------------------------------------------- 1 | export default () => ( 2 |Next.js on top of NestJS!
3 | ); 4 | -------------------------------------------------------------------------------- /examples/with-nodemon/server/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/with-nodemon/server/app.controller.ts -------------------------------------------------------------------------------- /examples/with-nodemon/server/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/with-nodemon/server/app.module.ts -------------------------------------------------------------------------------- /examples/with-nodemon/server/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/with-nodemon/server/main.ts -------------------------------------------------------------------------------- /examples/with-nodemon/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/with-nodemon/tsconfig.json -------------------------------------------------------------------------------- /examples/with-nodemon/tsconfig.server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/examples/with-nodemon/tsconfig.server.json -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/lerna.json -------------------------------------------------------------------------------- /lib/fonts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/lib/fonts/index.ts -------------------------------------------------------------------------------- /lib/http/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/lib/http/index.ts -------------------------------------------------------------------------------- /lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/lib/index.ts -------------------------------------------------------------------------------- /lib/responsive/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/lib/responsive/index.ts -------------------------------------------------------------------------------- /lib/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/lib/theme/index.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/next.config.js -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/nodemon.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/package.json -------------------------------------------------------------------------------- /packages/next/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/packages/next/LICENSE -------------------------------------------------------------------------------- /packages/next/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/packages/next/README.md -------------------------------------------------------------------------------- /packages/next/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/packages/next/lib/index.ts -------------------------------------------------------------------------------- /packages/next/lib/next.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/packages/next/lib/next.middleware.ts -------------------------------------------------------------------------------- /packages/next/lib/next.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/packages/next/lib/next.module.ts -------------------------------------------------------------------------------- /packages/next/lib/next.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/packages/next/lib/next.service.ts -------------------------------------------------------------------------------- /packages/next/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/packages/next/package.json -------------------------------------------------------------------------------- /packages/next/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/packages/next/tsconfig.json -------------------------------------------------------------------------------- /packages/postgres-express-session/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/packages/postgres-express-session/LICENSE -------------------------------------------------------------------------------- /packages/postgres-express-session/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/packages/postgres-express-session/README.md -------------------------------------------------------------------------------- /packages/postgres-express-session/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/packages/postgres-express-session/lib/index.ts -------------------------------------------------------------------------------- /packages/postgres-express-session/lib/postgres-express-session.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/packages/postgres-express-session/lib/postgres-express-session.entity.ts -------------------------------------------------------------------------------- /packages/postgres-express-session/lib/postgres-express-session.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/packages/postgres-express-session/lib/postgres-express-session.module.ts -------------------------------------------------------------------------------- /packages/postgres-express-session/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/packages/postgres-express-session/package.json -------------------------------------------------------------------------------- /packages/postgres-express-session/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/packages/postgres-express-session/tsconfig.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/admin/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/pages/admin/index.tsx -------------------------------------------------------------------------------- /pages/admin/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/pages/admin/login.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/public/images/apple-touch-icon.png -------------------------------------------------------------------------------- /public/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/public/images/icon.png -------------------------------------------------------------------------------- /server/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/server/app.module.ts -------------------------------------------------------------------------------- /server/logics/article/article.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/server/logics/article/article.module.ts -------------------------------------------------------------------------------- /server/logics/article/article.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/server/logics/article/article.service.ts -------------------------------------------------------------------------------- /server/logics/article/dto/create-article.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/server/logics/article/dto/create-article.dto.ts -------------------------------------------------------------------------------- /server/logics/auth/auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/server/logics/auth/auth.module.ts -------------------------------------------------------------------------------- /server/logics/auth/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/server/logics/auth/auth.service.ts -------------------------------------------------------------------------------- /server/logics/auth/guards/index.ts: -------------------------------------------------------------------------------- 1 | export * from './login.guard'; 2 | -------------------------------------------------------------------------------- /server/logics/auth/guards/login.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/server/logics/auth/guards/login.guard.ts -------------------------------------------------------------------------------- /server/logics/auth/middlewares/api-auth.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/server/logics/auth/middlewares/api-auth.middleware.ts -------------------------------------------------------------------------------- /server/logics/auth/middlewares/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/server/logics/auth/middlewares/index.ts -------------------------------------------------------------------------------- /server/logics/auth/middlewares/redirect-if-authenticated.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/server/logics/auth/middlewares/redirect-if-authenticated.middleware.ts -------------------------------------------------------------------------------- /server/logics/auth/middlewares/redirect-if-not-authenticated.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/server/logics/auth/middlewares/redirect-if-not-authenticated.middleware.ts -------------------------------------------------------------------------------- /server/logics/auth/strategies/index.ts: -------------------------------------------------------------------------------- 1 | export * from './local-login.strategy'; 2 | -------------------------------------------------------------------------------- /server/logics/auth/strategies/local-login.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/server/logics/auth/strategies/local-login.strategy.ts -------------------------------------------------------------------------------- /server/logics/database/typeorm.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/server/logics/database/typeorm.service.ts -------------------------------------------------------------------------------- /server/logics/env/env.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/server/logics/env/env.module.ts -------------------------------------------------------------------------------- /server/logics/env/env.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/server/logics/env/env.service.ts -------------------------------------------------------------------------------- /server/logics/logic.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/server/logics/logic.module.ts -------------------------------------------------------------------------------- /server/logics/session/session.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/server/logics/session/session.module.ts -------------------------------------------------------------------------------- /server/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/server/main.ts -------------------------------------------------------------------------------- /server/routes/admin/home.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/server/routes/admin/home.controller.ts -------------------------------------------------------------------------------- /server/routes/api/admin/auth.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/server/routes/api/admin/auth.controller.ts -------------------------------------------------------------------------------- /server/routes/api/admin/me.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/server/routes/api/admin/me.controller.ts -------------------------------------------------------------------------------- /server/routes/api/general/article.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/server/routes/api/general/article.controller.ts -------------------------------------------------------------------------------- /server/routes/general/home.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/server/routes/general/home.controller.ts -------------------------------------------------------------------------------- /server/routes/route.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/server/routes/route.module.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/tsconfig.server.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltyshiomix/nestpress/HEAD/tslint.json --------------------------------------------------------------------------------