Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kettasoft/scaffolding
Scaffolding is a strong and flexible structure based on HMVC architecture.
https://github.com/kettasoft/scaffolding
architecture components hmvc hmvc-architecture laravel laravel-framework laravel10 php project ready-made-component scaffolding structure
Last synced: 9 days ago
JSON representation
Scaffolding is a strong and flexible structure based on HMVC architecture.
- Host: GitHub
- URL: https://github.com/kettasoft/scaffolding
- Owner: kettasoft
- Created: 2024-05-16T08:23:55.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2024-10-27T03:17:23.000Z (10 days ago)
- Last Synced: 2024-10-27T04:24:15.385Z (10 days ago)
- Topics: architecture, components, hmvc, hmvc-architecture, laravel, laravel-framework, laravel10, php, project, ready-made-component, scaffolding, structure
- Language: PHP
- Homepage:
- Size: 12 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# Scaffolding™
[![Run Tests](https://github.com/kettasoft/scaffolding/actions/workflows/ci.yml/badge.svg?event=push)](https://github.com/kettasoft/scaffolding/actions/workflows/ci.yml)
## Requirements
- PHP 7.4 or higher
- Database (eg: MySQL, PostgreSQL, SQLite)
- Web Server (eg: Apache, Nginx)[//]: # "* [Other libraries]('To Be Added')"
## Framework
Scaffolding uses [Laravel](http://laravel.com), the best existing PHP framework, as the foundation framework
and [Module](https://nwidart.com/laravel-modules/v6/introduction) package for Apps.## Installation
- Install [Composer](https://getcomposer.org/download) and [Npm](https://nodejs.org/en/download)
- Clone the repository: `git clone https://github.com/kettasoft/scaffolding.git`
- if you want to change dashboard colors ?
- before running: `npm run dev`
change `INSTALLER_CHOSEN_COLOR, MIX_INSTALLER_CHOSEN_COLOR, DASHBOARD_CHOSEN_COLOR, MIX_DASHBOARD_CHOSEN_COLOR` and
set your desired color without `#`
- Install dependencies: `composer install ; npm install ; npm run dev`
- Create new MySQL database for this application
- Install Scaffolding:simply visit this url `{{app_url}}/installer` and follow instructions
- Or :
If you use valet or linux system just execute the init.sh file to configure your environment automatically.
```bash
sh init.sh
```- Or :
If you use Windows system just execute the init.bat file to configure your environment automatically.
```bash
init.bat
```- Or :
```bash
php artisan install
```- Or :
```bash
php artisan install --db-name="scaffolding" --db-username="root" --db-password="" --admin-name="admin" --admin-email="[email protected]" --admin-phone="987654321" --admin-password="password"
```- Create sample data (optional):
```bash
php artisan sample-data:seed
```- Or if you want a specific number
```bash
php artisan sample-data:seed --count="your count here"
```
📦 Scaffolding dependencies