Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vinniko/tasker
📜 A small PHP application with MVC pattern implementation without third-party frameworks.
https://github.com/vinniko/tasker
css database eloquent-orm html5 http mvc mysql php
Last synced: 17 days ago
JSON representation
📜 A small PHP application with MVC pattern implementation without third-party frameworks.
- Host: GitHub
- URL: https://github.com/vinniko/tasker
- Owner: Vinniko
- Created: 2021-08-07T12:34:44.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-08-09T08:53:54.000Z (over 3 years ago)
- Last Synced: 2024-11-21T16:17:55.508Z (3 months ago)
- Topics: css, database, eloquent-orm, html5, http, mvc, mysql, php
- Language: PHP
- Homepage:
- Size: 25.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Tasker (MVC application on PHP without frameworks)
## Installation
```bash
composer install
```Copy .env from .env.example file and then write your database config
```bash
cp .env.example .env
```Run migrations
```bash
php database/migrations/migrations.php
```Run user seeder
```bash
php database/seeders/seeders.php
```Run:
```bash
cd public/
php -S localhost:8000
```
Enter in browser:```bash
localhost:8000
```