从github上面下载源代码
cd /Data/apps/nginx/html
git clone https://github.com/jitamin/jitamin.git
修改配置文件
cd /Data/apps/nginx/html/jitamin
vi config.php
cp .env.example .env
vim .env
APP_NAME=Jitamin
APP_ENV=production
APP_DEBUG=true
APP_KEY=SomeRandomString
APP_TIMEZONE=Asia/Shanghai
APP_LOCALE=zh-CN
APP_THEME=black
APP_LOG=daily
APP_LOG_LEVEL=error
APP_URL=http://localhost
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=jitamin
DB_USERNAME=root
DB_PASSWORD=123.asd
~
这里要修改一下配置文件 config.php( 从config.default.php复制过来,重命名成为config.php) , 里面的数据库要改成mysql, sqlite有问题
, 不能正常使用, 不要用
安装相关的包
cd /Data/apps/nginx/html/jitamin
curl -sS https://getcomposer.org/installer | php
export PATH=$PATH:/usr/local/PHP/bin
composer install -o --no-dev
创建数据库并初始化
CREATE DATABASE jitamin;
数据库表创建
vendor/bin/phinx migrate
数据库初始化
vendor/bin/phinx seed:run
修改缓存目录的权限
chmod -R 0777 bootstrap/cache$ chmod -R 0777 storage