{"id":14975574,"url":"https://github.com/l-i-n-k-u-p/reactive-cms","last_synced_at":"2025-10-27T14:30:29.967Z","repository":{"id":42358123,"uuid":"161574428","full_name":"l-i-n-k-u-p/reactive-cms","owner":"l-i-n-k-u-p","description":"A simple CMS more!","archived":false,"fork":false,"pushed_at":"2023-03-02T15:11:16.000Z","size":7686,"stargazers_count":6,"open_issues_count":34,"forks_count":0,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-02-01T06:05:54.965Z","etag":null,"topics":["cms","docker","docker-container","fastify","mongodb","mongoosejs","nodejs","nodejs-cms","pm2","socket-io","tiptap","vue-mc","vue-router","vuejs"],"latest_commit_sha":null,"homepage":"https://reactive-web.github.io/reactive-cms/","language":"Vue","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/l-i-n-k-u-p.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-12-13T02:44:46.000Z","updated_at":"2023-06-08T10:24:41.000Z","dependencies_parsed_at":"2024-09-18T17:06:36.258Z","dependency_job_id":null,"html_url":"https://github.com/l-i-n-k-u-p/reactive-cms","commit_stats":{"total_commits":389,"total_committers":5,"mean_commits":77.8,"dds":"0.21593830334190234","last_synced_commit":"788b6fddada2c821db16da924180385536394911"},"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/l-i-n-k-u-p%2Freactive-cms","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/l-i-n-k-u-p%2Freactive-cms/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/l-i-n-k-u-p%2Freactive-cms/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/l-i-n-k-u-p%2Freactive-cms/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/l-i-n-k-u-p","download_url":"https://codeload.github.com/l-i-n-k-u-p/reactive-cms/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238508483,"owners_count":19484137,"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":["cms","docker","docker-container","fastify","mongodb","mongoosejs","nodejs","nodejs-cms","pm2","socket-io","tiptap","vue-mc","vue-router","vuejs"],"created_at":"2024-09-24T13:52:13.862Z","updated_at":"2025-10-27T14:30:29.487Z","avatar_url":"https://github.com/l-i-n-k-u-p.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n    \u003cimg src=\"./ReadmeMDAssets/reactive-cms-logo.png\" width=\"300\" height=\"auto\"/\u003e\n    \u003cbr /\u003e\n    A simple CMS more to start your project!\n    \u003cbr /\u003e\n\u003c/div\u003e\n\nTechnologies and Design\n-\n- Docker\n- NodeJS\n- MongoDB\n- FastifyJS\n- MongooseJS\n- VueJS\n- Vue-MC\n- Vue-Router\n- Tiptap\n- SocketIO\n- PM2\n- Material Design\n\nRequeriments\n-\n- Linux\n- Docker\n- Nginx latest (if you don't use Docker)\n- NodeJS \u003e v10.16.0 (if you don't use Docker)\n- MongoDB latest (if you don't use Docker)\n\n\nInitial Configuration\n-\n- Edit config/config.js file with your preferences\n```javascript\nconst APP_CONFIG = {\n  port: 3000,\n  mongoDBURI: 'mongodb://192.168.1.8:27017/reactivecms',\n  bcryptSaltRounds: 12,\n  appSecret: 'iCD5e@rx$3-9rR_QZwIW2Dg-Zn^h\u0026heS', // 32 characters\n  staticUploadPath: 'site-static',\n  staticUploadPrefix: 'public', // use '/public/' instead of '/site-static/'\n  uploadDirectory: 'site-static/uploads/',\n  staticFilesPath: 'static',\n  staticFilesPrefix: 'website',\n  sessionMaxAge: 1000 * 60 * 60 * 24 * 3, // 3 days\n  ipAddressToListen: '0.0.0.0', // 0.0.0.0 for docker container\n  domain: 'localhost', // localhost \\ domain.com\n  fastifyOptions: {\n    http2: false,\n    https: null,\n    ignoreTrailingSlash: true,\n    logger: false,\n  },\n  socketIOOptions: {\n    socketIOpingTimeout: 60000,\n    pingInterval: 10000,\n    pingTimeout: 5000,\n  },\n  emailOptions: {\n    emailService: 'gmail',\n    emailAccount: '',\n    emailAccountPassword: '',\n  },\n}\n```\n\n\nInstall and running app using Docker\n-\n```bash\ncd reactive-cms;\nsh rcms.sh -h; # you can see all commands for use app with Docker\nsh rcms.sh --deployment; # this command download and create images\nsh rcms.sh --start-development; # this command create docker containers and run all services\n```\nWhen you use --start-development or --start-production mode, all services are running in each container\nand you can see the logs using:\n```bash\ndocker logs \u003ccontainer id\u003e -f --tail 100\n```\n\n\nInstall and running app without Docker\n-\n```bash\ncd reactive-cms;\nnpm install;\nnpm run start; # compile dashboard and run server in production mode\nnpm run server-production; # only run server in production mode\nnpm run server-development; # run server in development mode and watch for file changes\nnpm run server-monit; # show all server logs with PM2\nnpm run server-logs; # show all server logs\nnpm run server-stop; # stop all server instances\nnpm run dashboard-development; # compile dashboard in development mode and watch for file changes\nnpm run dashboard-production; # compile dashboard in production mode\n```\n\n\nTest\n-\nIf you don't edit nothing about default ports from config.js\n\nNow enter to: localhost:3000 and fill the setup form.\n\n\nTo do:\n-\n- Create global environment config for all containers\n- Prepare all containers for use docker stack deploy\n- Create complete documentation page\n\n\n## Email:\neduardobc.88@gmail.com\n\n\u003cdiv align=\"center\"\u003e\n    \u003cbr /\u003e\n    Development by:\n    \u003cbr /\u003e\n    linkup\n\u003c/div\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fl-i-n-k-u-p%2Freactive-cms","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fl-i-n-k-u-p%2Freactive-cms","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fl-i-n-k-u-p%2Freactive-cms/lists"}