https://github.com/reactmore/ci4-starterpanel
https://github.com/reactmore/ci4-starterpanel
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/reactmore/ci4-starterpanel
- Owner: reactmore
- License: mit
- Created: 2022-08-19T10:24:55.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-08-19T10:24:56.000Z (over 3 years ago)
- Last Synced: 2025-01-26T13:29:17.703Z (about 1 year ago)
- Language: JavaScript
- Size: 1.65 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CodeIgniter 4 Admin Panel Starter
## Installation & updates
`git clone` or download this source code then run `composer update` whenever there is a new release of the framework.
## Setup
- Copy `env` to `.env` and tailor for your app, specifically the baseURL and any database settings.
- Run `php spark db:create` to create a new database schema.
- Run `php spark migrate` to running database migration
- Run `php spark db:seed users` to seeding default database user
- Run `php spark key:generate` to create encrypter key
- Run `php spark serve` to launching the CodeIgniter PHP-Development Server
## Server Requirements
PHP version 8.0 is required, with the following extensions installed:
- [intl](http://php.net/manual/en/intl.requirements.php)
- [libcurl](http://php.net/manual/en/curl.requirements.php) if you plan to use the HTTP\CURLRequest library
Additionally, make sure that the following extensions are enabled in your PHP:
- json (enabled by default - don't turn it off)
- [mbstring](http://php.net/manual/en/mbstring.installation.php)
- [mysqlnd](http://php.net/manual/en/mysqlnd.install.php)
- xml (enabled by default - don't turn it off)
## Features
Features on this project:
- Authentication
- Authorization
- User Registration
- Menu Management with auto create controller and view file