https://github.com/afrianjunior/mymvc-v1.1
just a simple mvc
https://github.com/afrianjunior/mymvc-v1.1
Last synced: about 1 year ago
JSON representation
just a simple mvc
- Host: GitHub
- URL: https://github.com/afrianjunior/mymvc-v1.1
- Owner: afrianjunior
- Created: 2016-09-14T16:28:42.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-09-15T15:45:03.000Z (almost 10 years ago)
- Last Synced: 2025-01-02T10:15:10.093Z (over 1 year ago)
- Language: PHP
- Homepage:
- Size: 31.3 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## mymvc-v1.1
just a simple mvc.
## install
Please download, clone, or fork this repository.
## How to run mymvc-v1.1
Previously please install composer if you not have [composer](https://getcomposer.org/) and after install composer follow a few steps above :
## step 1
Create your database, and setting yor database name in file env.json, but you want to default database please export dbmymvc_2016-09-14.sql to your database.
```json
{
"driver": "mysql",
"host": "127.0.0.1",
"database": "dbmymvc",
"username": "root",
"password": "root",
"charset": "utf8",
"collation": "utf8_unicode_ci"
}
```
## step 2
Install composer in your directory app.
```bash
composer install
```
## step 3
Build in server, go to directory in your directory run this command :
```bash
php -S localhost:9000
```
more [documentation](https://github.com/adiatma/mymvc-v1.1/blob/master/DOCUMENTATION.md)