Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Rotua Panjaitan
yii2
Commits
3af5c9bf
Commit
3af5c9bf
authored
Jul 29, 2013
by
Maikel Brouwer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Resolves #674 - Remove old config files
parent
ccb2b0f6
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
60 deletions
+0
-60
index.php
apps/advanced/environments/dev/backend/www/index.php
+0
-14
index.php
apps/advanced/environments/dev/frontend/www/index.php
+0
-16
index.php
apps/advanced/environments/prod/backend/www/index.php
+0
-14
index.php
apps/advanced/environments/prod/frontend/www/index.php
+0
-16
No files found.
apps/advanced/environments/dev/backend/www/index.php
deleted
100644 → 0
View file @
ccb2b0f6
<?php
// comment out the following line to disable debug mode
defined
(
'YII_DEBUG'
)
or
define
(
'YII_DEBUG'
,
true
);
require
(
__DIR__
.
'/../../vendor/yiisoft/yii2/yii/Yii.php'
);
require
(
__DIR__
.
'/../../vendor/autoload.php'
);
$config
=
yii\helpers\ArrayHelper
::
merge
(
require
(
__DIR__
.
'/../config/main.php'
),
require
(
__DIR__
.
'/../config/main-local.php'
)
);
$application
=
new
yii\web\Application
(
$config
);
$application
->
run
();
apps/advanced/environments/dev/frontend/www/index.php
deleted
100644 → 0
View file @
ccb2b0f6
<?php
// comment out the following line to disable debug mode
defined
(
'YII_DEBUG'
)
or
define
(
'YII_DEBUG'
,
true
);
require
(
__DIR__
.
'/../../vendor/yiisoft/yii2/yii/Yii.php'
);
require
(
__DIR__
.
'/../../vendor/autoload.php'
);
Yii
::
importNamespaces
(
require
(
__DIR__
.
'/../../vendor/composer/autoload_namespaces.php'
));
$config
=
yii\helpers\ArrayHelper
::
merge
(
require
(
__DIR__
.
'/../config/main.php'
),
require
(
__DIR__
.
'/../config/main-local.php'
)
);
$application
=
new
yii\web\Application
(
$config
);
$application
->
run
();
apps/advanced/environments/prod/backend/www/index.php
deleted
100644 → 0
View file @
ccb2b0f6
<?php
// comment out the following line to disable debug mode
defined
(
'YII_DEBUG'
)
or
define
(
'YII_DEBUG'
,
false
);
require
(
__DIR__
.
'/../../vendor/yiisoft/yii2/yii/Yii.php'
);
require
(
__DIR__
.
'/../../vendor/autoload.php'
);
$config
=
yii\helpers\ArrayHelper
::
merge
(
require
(
__DIR__
.
'/../config/main.php'
),
require
(
__DIR__
.
'/../config/main-local.php'
)
);
$application
=
new
yii\web\Application
(
$config
);
$application
->
run
();
apps/advanced/environments/prod/frontend/www/index.php
deleted
100644 → 0
View file @
ccb2b0f6
<?php
// comment out the following line to disable debug mode
defined
(
'YII_DEBUG'
)
or
define
(
'YII_DEBUG'
,
false
);
require
(
__DIR__
.
'/../../vendor/yiisoft/yii2/yii/Yii.php'
);
require
(
__DIR__
.
'/../../vendor/autoload.php'
);
Yii
::
importNamespaces
(
require
(
__DIR__
.
'/../../vendor/composer/autoload_namespaces.php'
));
$config
=
yii\helpers\ArrayHelper
::
merge
(
require
(
__DIR__
.
'/../config/main.php'
),
require
(
__DIR__
.
'/../config/main-local.php'
)
);
$application
=
new
yii\web\Application
(
$config
);
$application
->
run
();
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment