书栈网 · BookStack 本次搜索耗时 0.012 秒,为您找到 24 个相关结果.
  • CentOS Installation - Nginx

    step 1 step 2 step 3 step 4 step 5 CentOS 7.5.1804,php7.0,root用户为例 step 1 使用EPEL源或Webtatic源安装: rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch...
  • CentOS Installation - Apache

    step 1 step 2 step 3 step 4 step 5 CentOS 7.5.1804,php7.0,root用户为例 step 1 使用EPEL源或Webtatic源安装: rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch...
  • Ubuntu Installation - Apache

    step 1 step 2 step 3 step 4 step 5 ubuntu 16.04,php7.0,root用户为例 step 1 更新软件源列表地址 apt-get update 安装Apache: apt-get install -y apache2 安装php以及相关组件。php建议安装7.0,>=5.5.9...
  • Ubuntu Installation - Nginx

    step 1 step 2 step 3 step 4 step 5 ubuntu 16.04,php7.0,root用户为例 step 1 更新软件源列表地址 apt-get update 安装Nginx: apt-get install -y nginx 安装php以及相关组件。php建议安装7.0,>=5.5.9其他版...
  • Introduction

    ActionView Demo 安装手册 Feature 常见问题 RoadMap Contributing License ActionView English | 中文 一个类Jira的问题需求跟踪工具,前端基于reactjs+redux、后端基于php laravel-framework。前端代码库:actio...
  • Integration with GitLab and GitHub

    配置webhook访问token 配置webhook 提交代码格式 配置webhook访问token 在ActionView侧 .env 文件里配置webhook访问token。GitLab token: GITLAB_WEBHOOK_TOKENGitHub token: GITHUB_WEBHOOK_TOKEN 配置webhook ...
  • Docker Installation

    1 安装docker 和 docker-compose 2 下载代码 3 启动容器 4 访问 5 Web容器个数 1 安装docker 和 docker-compose 2 下载代码 git clone https://github.com/lxerxa/actionview.git actionview 3 启动容器 cd...
  • FAQ

    Q: 用户怎么创建项目?A: 系统管理员在系统配置里可配置是否允许用户创建项目,默认是不允许。 Q: 用户怎么删除项目?A: 只有系统管理员可删除项目。建议不要轻易使用该操作,以免误删除数据,可以考虑使用项目关闭功能。 Q: 项目负责人在项目中扮演设么角色?A: 拥有此项目“项目管理”权限。 Q: 项目怎么引用配置方案?A: 默认是...
  • 实作Web APIs

    实作 Web APIs Router 路由实作 Controller 实作 jBuilder 锦囊妙计 API 的自动化测试 上述范例 实作 Web APIs 使用者认证 其他议题 实作 Web APIs Good code is its own best documentation. As you’re about to add ...
  • 使用视图

    使用视图 使用示例 如何查找视图 使用布局文件 视图加载静态文件 使用视图 通过方法: view() 渲染一个视图文件 通过 \Swoft::getBean('renderer')->rander('view file') 渲染一个视图文件 在控制器的action注释上还可以快捷的使用 @View () 来使用 使用示例 /**...