Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/astechedu/yii2basicapp
yii2basic for beginners
https://github.com/astechedu/yii2basicapp
php yii yii2
Last synced: 26 days ago
JSON representation
yii2basic for beginners
- Host: GitHub
- URL: https://github.com/astechedu/yii2basicapp
- Owner: astechedu
- License: bsd-3-clause
- Created: 2021-07-25T13:05:13.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-02-08T05:43:43.000Z (over 2 years ago)
- Last Synced: 2024-09-30T22:11:26.111Z (about 1 month ago)
- Topics: php, yii, yii2
- Language: PHP
- Homepage:
- Size: 58.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
The template contains the basic features including user login/logout and a contact page.
It includes all commonly used configurations that would allow you to focus on adding new
features to your application.DIRECTORY STRUCTURE
-------------------assets/ contains assets definition
commands/ contains console commands (controllers)
config/ contains application configurations
controllers/ contains Web controller classes
mail/ contains view files for e-mails
models/ contains model classes
runtime/ contains files generated during runtime
tests/ contains various tests for the basic application
vendor/ contains dependent 3rd-party packages
views/ contains view files for the Web application
web/ contains the entry script and Web resourcesREQUIREMENTS
------------The minimum requirement by this project template that your Web server supports PHP 5.6.0.
INSTALLATION
------------### Install via Composer
~~~
composer create-project --prefer-dist yiisoft/yii2-app-basic basic
~~~Now you should be able to access the application through the following URL, assuming `basic` is the directory
directly under the Web root.~~~
http://localhost/basic/web/
~~~CONFIGURATION
-------------### Database
Edit the file `config/db.php` with real data, for example:
```php
return [
'class' => 'yii\db\Connection',
'dsn' => 'mysql:host=localhost;dbname=yii2basic',
'username' => 'root',
'password' => '1234',
'charset' => 'utf8',
];
```:+: