Skip to content

handonch/worktime2

 
 

Repository files navigation

#worktime2 一款轻量级研发项目管理工具,主要针对中小互联网敏捷开发团队,页面清爽简单,功能精简好用。

##体验地址, 没有开放上传图片 http://120.132.69.194/

##使用框架 laravel 5.1 相关文档可以参考
http://laravel-china.org/docs/5.1
http://www.golaravel.com/laravel/docs/5.1/

##基本配置 mv .env.example .env 文件可以修改数据库配置
mysql 里面要先创建一个数据库,例如:CREATE DATABASE IF NOT EXISTS worktime DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
执行命令创建数据库表 php artisan migrate
chmod 777 -R storage
开发环境下,也可以使用php自带的webserver 命令:php artisan serve --port=8080

##我使用的shell history

pwd
#/data/www

cd worktime2/
#mysql 创建数据库
#CREATE DATABASE IF NOT EXISTS worktime2 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;

mv .env.example .env
vim .env
# 改数据库配置

php artisan key:generate
chmod 777 -R storage/
php artisan migrate

# nginx 配置
vim /usr/local/programs/nginx/conf/nginx.conf

#重启nginx
/usr/local/programs/nginx/sbin/nginx -s reload

##我的nginx配置

server {
    listen       80;
    server_name  localhost;

    root           /data/worktime/public;

    access_log  off;

    location / {
        try_files $uri $uri/ /index.php?$query_string;
        index  index.php index.html index.htm;
    }

    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   html;
    }

    location ~ \.php$ {
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        include        fastcgi_params;
    }
}

##联系我 email: aoktian@foxmail.com

About

一款轻量级研发项目管理工具,主要针对中小互联网敏捷开发团队,页面清爽简单,功能精简好用。

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • JavaScript 86.5%
  • PHP 9.1%
  • HTML 4.4%