The 3D photo gallery , Built using Slim 3, Three.js, Tween.js, easychat
- Wall Show
- Cube Show
- Sphere Show
- Cylinder Show
- Plane
- 1、 Download source code
git clone https://github.com/liuhill/pper.git
- 2、 Install packages
composer install
- 3、 Generate autoload file
composer dump-autoload -o
- 4、 Create database
pper
, and import mysql table
mysql -uroot -p pper < db/pper.sql
- 5、 Copy Default Configure
src/setting.default.php
为src/setting.php
cp src/setting.default.php src/setting.php
- 6、 Configure
src/setting.php
// weixin
'weixin' => [
'app_id' => '', //app_id
'secret' => '', //EncodingAESKey
'token' => '', //token
],
mysql
// Database connection settings
"db" => [
"host" => "localhost",
"dbname" => "pper",
"user" => "",
"pass" => ""
],
qiniu cloud
// 七牛云 https://www.qiniu.com/
'qiniu' => [
'enable' => false,
'access' => '',
'secret' => '',
'bucket' => ''
],
- 7、 Start
php -S 0.0.0.0:80 -t public
OR
composer start