All Projects → sanluan → Publiccms

sanluan / Publiccms

Licence: other
现代化java cms,由天津黑核科技有限公司开发,轻松支撑千万数据、千万PV;支持静态化,服务器端包含; 目前已经拥有全球0.0002%的用户,语言支持中、繁、日、英;是一个已走向海外的成熟CMS产品

Programming Languages

java
68154 projects - #9 most used programming language
HTML
75241 projects
CSS
56736 projects
FreeMarker
481 projects
Batchfile
5799 projects
shell
77523 projects

Projects that are alternatives of or similar to Publiccms

Publii
Publii is a desktop-based CMS for Windows, Mac and Linux that makes creating static websites fast and hassle-free, even for beginners.
Stars: ✭ 3,644 (+108.23%)
Mutual labels:  cms, static-site-generator, static-site, static-website
Quokka
LOOKING FOR NEW MAINTAINER - Quokka is a Content Management System - `docker run --rm -it -p 5000:5000 quokka/quokka`
Stars: ✭ 2,198 (+25.6%)
Mutual labels:  cms, static-site-generator, static-site
hyperdraft
Turn your notes into a website.
Stars: ✭ 59 (-96.63%)
Mutual labels:  static-site-generator, static-site, static-website
urlzap
⚡️ Your own static URL shortener
Stars: ✭ 57 (-96.74%)
Mutual labels:  static-site-generator, static-site, static-website
hugo-initio
Hugo Theme port of Initio bootstrap template by GetTemplate
Stars: ✭ 58 (-96.69%)
Mutual labels:  static-site-generator, static-site, static-website
tinystatic
A tiny static website generator which is flexible and easy to use
Stars: ✭ 36 (-97.94%)
Mutual labels:  static-site-generator, static-site, static-website
stacy
Website generator that combines content from Contentful CMS with Handlebars templates and publishes the website in Amazon S3.
Stars: ✭ 24 (-98.63%)
Mutual labels:  static-site-generator, static-site, static-website
Trampoline
Admin Spring Boot Locally
Stars: ✭ 325 (-81.43%)
Mutual labels:  gradle, springboot, maven
Fs Blog
个人博客,Spring Boot 开山之作,采用 Spring Boot + MyBatis,前端 Bootstrap + LayUI,支持程序员非常青睐的轻量化的 Markdown 编辑器 Editor.md,支持标签分类检索
Stars: ✭ 700 (-60%)
Mutual labels:  gradle, freemarker, springboot
Ryosuke Gatsby Blog
Static PWA React-powered portfolio and blog built with GatsbyJS
Stars: ✭ 90 (-94.86%)
Mutual labels:  static-site-generator, static-site
91break
91porn破解,html极简版,可视化界面,浏览器直接打开
Stars: ✭ 91 (-94.8%)
Mutual labels:  springboot, maven
Nopress
A collection of CMSs and Static Site Generators.
Stars: ✭ 96 (-94.51%)
Mutual labels:  cms, static-site-generator
Hugo Theme Basic
Basic site theme styled with minimal tachyons, syntax highlighting, and blog series configuration. 📦
Stars: ✭ 89 (-94.91%)
Mutual labels:  static-site-generator, static-site
Jeeplatform
一款企业信息化开发基础平台,拟集成OA(办公自动化)、CMS(内容管理系统)等企业系统的通用业务功能 JeePlatform项目是一款以SpringBoot为核心框架,集ORM框架Mybatis,Web层框架SpringMVC和多种开源组件框架而成的一款通用基础平台,代码已经捐赠给开源中国社区
Stars: ✭ 1,285 (-26.57%)
Mutual labels:  freemarker, springboot
Kotlin Mpp Standard
A standard setup for Kotlin multiplatform projects.
Stars: ✭ 92 (-94.74%)
Mutual labels:  gradle, maven
Bootplus
基于SpringBoot + Shiro + MyBatisPlus的权限管理框架
Stars: ✭ 88 (-94.97%)
Mutual labels:  freemarker, springboot
React Static
⚛️ 🚀 A progressive static site generator for React.
Stars: ✭ 9,946 (+468.34%)
Mutual labels:  static-site-generator, static-site
Java Course
Self paced course for Java Engineers
Stars: ✭ 103 (-94.11%)
Mutual labels:  hibernate, maven
Gatsby Theme Try Ghost
A Gatsby theme to build flaring fast blogs from headless Ghost CMS
Stars: ✭ 88 (-94.97%)
Mutual labels:  static-site-generator, static-site
Sample Boot Hibernate
Spring Boot + JPA ( Hibernate ) + Java8 [ DDD Sample ]
Stars: ✭ 97 (-94.46%)
Mutual labels:  gradle, hibernate

PublicCMS V4.0

交流群1群 191381542 交流群2群 481589563 交流群3群 638756883

简介

PublicCMS是采用2020年最新主流技术开发的开源JAVACMS系统。由天津黑核科技有限公司开发,架构科学,轻松支持上千万数据、千万PV;支持全站静态化,SSI,动态页面局部静态化等为您快速建站,建设大规模站点提供强大驱动,也是企业级项目产品原型的良好选择。

获取源码

https://gitee.com/sanluan/PublicCMS https://github.com/sanluan/PublicCMS

参与开发

切换到develop分支,免费版本切换到2017分支

授权协议

  • 版本:V4.0 商用付费授权协议:详情参见LICENSE
  • 版本:V1.0,V2016,V2017 完全免费授权协议:MIT

环境要求

  • jdk或jre 1.8 及以上
  • mysql 5.5 及以上

目录说明

  • data\publiccms PublicCMS数据目录
  • doc 文档
  • publiccms-parent 工程源码

快速编译与运行

  • 编译运行

保证操作系统中有jdk1.8及以上

cd publiccms-parent
mvnw clean package
cd publiccms/target
java -jar publiccms.war

访问程序页面http://localhost:8080/publiccms/ ,根据页面提示配置并初始化数据库 管理后台访问相对路径为http://localhost:8080/publiccms/admin/ ,数据脚本内置管理员账号/密码:admin/admin

定制运行方式

  • windows启动命令
java -jar -Dfile.encoding="UTF-8" -Dcms.port=8080 -Dcms.contextPath=/publiccms -Dcms.filePath="%cd%\data\publiccms" publiccms.war
  • linux启动命令
java -jar -Dfile.encoding="UTF-8" -Dcms.port=8080 -Dcms.contextPath=/publiccms -Dcms.filePath="`pwd`/data/publiccms" publiccms.war

更多参数及含义请参考部署手册

  • tomcat中运行 将publiccms.war.original重命名为publiccms.war或ROOT.war(上下文路径为/),移动文件到tomcat的webapps目录下,此时-Dcms.filePath参数依旧有效
  • docker中运行 直接执行:
docker run -d -p 8080:8080 sanluan/publiccms

自行构建镜像:执行

docker build -t mypubliccms .
docker run -d -p 8080:8080 mypubliccms

更多参数及含义请参考 https://hub.docker.com/r/sanluan/publiccms/

演示

Public CMS架构图

Public CMS管理后台 - 中文

Public CMS管理後臺 - 繁體

Public CMS Management - English

Public CMS 管理バックグラウンド - 日本語

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].