zhlhuang / hcms
Hcms is a project development management system based on Hyperf framework. Under the support of Hyperf's hyperspeed and flexibility characteristics, it builds a project development management system with rapid development and module reuse.
Installs: 34
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 2
Open Issues: 0
Language:JavaScript
Type:project
Requires
- php: >=7.4
- 96qbhy/hyperf-auth: ^2.6
- hyperf/async-queue: ^2.2
- hyperf/cache: ^2.2
- hyperf/command: ~2.2.0
- hyperf/config: ~2.2.0
- hyperf/database: ~2.2.0
- hyperf/db-connection: ~2.2.0
- hyperf/framework: ~2.2.0
- hyperf/guzzle: ~2.2.0
- hyperf/http-server: ~2.2.0
- hyperf/logger: ~2.2.0
- hyperf/memory: ~2.2.0
- hyperf/model-cache: ^2.2
- hyperf/paginator: ^2.2
- hyperf/process: ~2.2.0
- hyperf/redis: ^2.2
- hyperf/session: ^2.2
- hyperf/validation: ^2.2
- hyperf/view: ^2.2
- intervention/image: ^2.7
- sy-records/think-template: ^2.0
Requires (Dev)
- hyperf/devtool: ~2.2.0
- hyperf/ide-helper: ~2.2.0
- hyperf/testing: ~2.2.0
- hyperf/watcher: ^2.2
- mockery/mockery: ^1.0
- swoole/ide-helper: ^4.5
Suggests
- ext-json: Required to use JSON.
- ext-openssl: Required to use HTTPS.
- ext-pdo: Required to use MySQL Client.
- ext-pdo_mysql: Required to use MySQL Client.
- ext-redis: Required to use Redis Client.
README
Hcms 是一个基于 Hyperf 框架的项目开发管理系统 , 在Hyperf超高速且灵活的特性加持下,构建一个快速开发、模块复用的项目开发管理系统。
依赖
- PHP >= 7.4
- Swoole PHP extension >= 4.5,and Disabled
Short Name
- OpenSSL PHP extension
- JSON PHP extension
- PDO PHP extension
- Redis PHP extension
安装
- composer 创建项目
composer create-project zhlhuang/hcms
- 配置 .env 数据库和Redis
APP_NAME=hcms
APP_ENV=dev
DB_DRIVER=mysql
DB_HOST=localhost
DB_PORT=3306
DB_DATABASE=hcms
DB_USERNAME=root
DB_PASSWORD=
DB_CHARSET=utf8mb4
DB_COLLATION=utf8mb4_unicode_ci
DB_PREFIX=
REDIS_HOST=localhost
REDIS_AUTH=(null)
REDIS_PORT=6379
REDIS_DB=0
- 执行hcms安装 Admin 模块
php bin/hyperf.php hcms:install admin
启动
composer start //开发启动 composer watch
访问
访问 http://127.0.0.1:9501/admin/index/index
默认管理的账号是 admin、密码是 123123