{"id":18488492,"url":"https://github.com/saltyshiomix/nestpress","last_synced_at":"2025-04-08T21:30:33.801Z","repository":{"id":57129909,"uuid":"208189224","full_name":"saltyshiomix/nestpress","owner":"saltyshiomix","description":"A production ready personal blogging system on top of NestJS and NEXT.js","archived":true,"fork":false,"pushed_at":"2020-08-20T16:24:17.000Z","size":497,"stargazers_count":42,"open_issues_count":3,"forks_count":9,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-02T17:53:00.267Z","etag":null,"topics":["material-ui","nestjs","nextjs","react","typescript"],"latest_commit_sha":null,"homepage":"https://npm.im/@nestpress/next","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/saltyshiomix.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-09-13T03:32:38.000Z","updated_at":"2024-02-14T05:04:10.000Z","dependencies_parsed_at":"2022-08-24T14:59:40.587Z","dependency_job_id":null,"html_url":"https://github.com/saltyshiomix/nestpress","commit_stats":null,"previous_names":[],"tags_count":14,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saltyshiomix%2Fnestpress","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saltyshiomix%2Fnestpress/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saltyshiomix%2Fnestpress/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saltyshiomix%2Fnestpress/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/saltyshiomix","download_url":"https://codeload.github.com/saltyshiomix/nestpress/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247930975,"owners_count":21020143,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["material-ui","nestjs","nextjs","react","typescript"],"created_at":"2024-11-06T12:51:48.434Z","updated_at":"2025-04-08T21:30:33.786Z","avatar_url":"https://github.com/saltyshiomix.png","language":"TypeScript","funding_links":[],"categories":["TypeScript"],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://i.imgur.com/Xi3FtAT.png\"\u003e\n\u003c/p\u003e\n\u003cp align=\"center\"\u003e\n  A production ready personal blogging system on top of \u003ca href=\"https://nestjs.com\"\u003eNestJS\u003c/a\u003e and \u003ca href=\"https://nextjs.org\"\u003eNEXT.js\u003c/a\u003e\n\u003c/p\u003e\n\n## Roadmaps\n\n- [x] Cross Platform\n- [x] Dark Theme\n- [x] Authentication\n- [ ] Blogging\n- [ ] Testing\n\n## Usage\n\n### Database Setup\n\n#### For Mac Users\n\n```bash\n# install postgresql\n$ brew install postgresql\n\n# if you want to start postgresql in startup, try do this\n$ brew services start postgresql\n\n# create user \"nestpressuser\" with password \"nestpresspass\"\n$ createuser -P nestpressuser\n\n# create database \"nestpressdb\" owened by \"nestpressuser\"\n$ createdb nestpressdb -O nestpressuser\n```\n\n#### For Windows Users\n\n##### PostgreSQL\n\n- Download an installer at \u003chttps://www.postgresql.org/download/windows\u003e\n- Run the installer with a flag `--install_runtimes 0` like this:\n\n```cmd\n\u003e postgresql-11.2-1-windows-x64.exe --install_runtimes 0\n```\n\n##### pgAdmin\n\n- Download a latest installer at \u003chttps://www.pgadmin.org/download\u003e\n- Run the pgAdmin and login with a root user\n- Right click `Login/Group Roles` and `Create \u003e Login/Group Role`\n    - `General` Panel:\n        - `Name`: `nestpressuser`\n    - `Definition` Panel:\n        - `Password`: `nestpresspass`\n    - `Priviledges` Panel:\n        - Check all `Yes`\n- Right click `Databases` and `Create \u003e Database`\n    - `General` Tab:\n        - `Database`: `nestpressdb`\n        - `Owner`: `nestpressuser`\n\n### Application Setup\n\n```bash\n# install\n$ git clone https://github.com/saltyshiomix/nestpress.git\n$ cd nestpress\n$ yarn\n\n# prepare `.env` and edit it for your own environments\n$ cp .env.example .env\n```\n\nThe `.env` file is like this:\n\n```\nDB_HOST=localhost\nDB_PORT=5432\nDB_USERNAME=nestpressuser\nDB_PASSWORD=nestpresspass\nDB_DATABASE=nestpressdb\nDB_SYNCHRONIZE=true\n\nAPP_ADMIN_EMAIL=test@test.com\nAPP_ADMIN_PASSWORD=test\nAPP_PROTOCOL=http\nAPP_HOST=localhost\nAPP_PORT=4000\nAPP_SESSION_SECRET=nestpress\n```\n\n### Development Mode\n\n```bash\n$ yarn dev (or `npm run dev`)\n```\n\n### Production Mode\n\n```bash\n$ yarn build (or `npm run build`)\n$ yarn start (or `npm start`)\n```\n\n## Packages\n\n| package | version |\n| --- | --- |\n| [@nestpress/next](https://github.com/saltyshiomix/nestpress/blob/master/packages/next/README.md) | ![@nestpress/next](https://img.shields.io/npm/v/@nestpress/next.svg) ![downloads](https://img.shields.io/npm/dt/@nestpress/next.svg) |\n| [@nestpress/postgres-express-session](https://github.com/saltyshiomix/nestpress/blob/master/packages/postgres-express-session/README.md) | ![@nestpress/postgres-express-session](https://img.shields.io/npm/v/@nestpress/postgres-express-session.svg) ![downloads](https://img.shields.io/npm/dt/@nestpress/postgres-express-session.svg) |\n\n## Fundamental Examples\n\n- [basic](https://github.com/saltyshiomix/nestpress/tree/master/examples/basic)\n- [basic-auth](https://github.com/saltyshiomix/nestpress/tree/master/examples/basic-auth)\n- [use-favicon](https://github.com/saltyshiomix/nestpress/tree/master/examples/use-favicon)\n- [with-express](https://github.com/saltyshiomix/nestpress/tree/master/examples/with-express)\n- [with-express-material-ui](https://github.com/saltyshiomix/nestpress/tree/master/examples/with-express-material-ui)\n- [with-nodemon](https://github.com/saltyshiomix/nestpress/tree/master/examples/with-nodemon)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsaltyshiomix%2Fnestpress","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsaltyshiomix%2Fnestpress","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsaltyshiomix%2Fnestpress/lists"}