harvest-media / hyii-starter
Harvest Media Yii2 Starter Project
Installs: 4
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 17
Language:CSS
Requires
- harvest-media/hyii: ^1.01
- dev-master
- 1.01.04
- 1.01.03
- 1.01.02
- 1.01.01
- dev-dependabot/npm_and_yarn/ua-parser-js-0.7.33
- dev-dependabot/npm_and_yarn/json5-1.0.2
- dev-dependabot/npm_and_yarn/express-4.18.2
- dev-dependabot/npm_and_yarn/decode-uri-component-0.2.2
- dev-dependabot/npm_and_yarn/engine.io-and-browser-sync-6.2.1
- dev-dependabot/npm_and_yarn/loader-utils-1.4.2
- dev-dependabot/npm_and_yarn/minimatch-3.1.2
- dev-dependabot/npm_and_yarn/eventsource-1.1.1
- dev-dependabot/npm_and_yarn/minimist-1.2.6
- dev-dependabot/npm_and_yarn/url-parse-1.5.10
- dev-dependabot/npm_and_yarn/follow-redirects-1.14.8
- dev-dependabot/composer/twig/twig-3.3.8
- dev-dependabot/npm_and_yarn/path-parse-1.0.7
- dev-dependabot/npm_and_yarn/ws-6.2.2
- dev-dependabot/npm_and_yarn/dns-packet-1.3.4
- dev-dependabot/npm_and_yarn/browserslist-4.16.6
- dev-dependabot/npm_and_yarn/ssri-6.0.2
This package is auto-updated.
Last update: 2025-03-27 08:16:05 UTC
README
Starter project which uses the scaffolding of the Hyii Core Class to provide ready-made user management and templates.
Installation
composer create-project harvest-media/hyii-starter
Then, go to the root project:
cd hyii-starter
or whatever directory name you created.
Next, create your environment file:
cp .env.example .env
Open up that file in your editor of choice. Fill in the site address, site name, and the database information.
Then you need to run the installation program.
./console install
Next, run npm install.
npm install
Adding your own Install Migration
If you want to create other tables during the installation, go to migrations/install.php
and
add functions for each table you want to create and them call those functions
in the safeUp function. Also, an uninstall feature is offered just for during
developmemnt. Make sure to add the drop table line in the safeDown function as well.
Development
There are some core classes and templates that are provided already for you in the
base-web-app project. An example of the login form and the dashboard page are
already placed in the controllers\web\
folder for you.
The UserController will be added soon which will provide basic user management.
Currently, when you use one of the base-web-app controllers, it would use the corresponding template in the base-web-app project. Soon, you will have the ability to specifiy to use your own template in the templates folder of this project.
All new pages you add to this project will be done through the controllers, models, and templates folders
at the root of this project. An example is at the controller/web/HelloController.php
Core Concepts
Yii2 PHP Framework
In order to successfully use this starter project, a basic understanding of the Yii2 framework is needed https://www.yiiframework.com/.
Twig Templating
For all of the views (html code), this project uses the /templates folder and the twig templating language https://twig.symfony.com/
Foundation CSS and Tailwind CSS
Both Foundation CSS and Tailwind are already included in the project.
SCSS File Location
src/css/theme.scss
Javascript File Location
src/js/theme.js
Tailwind Config File Location
This file is at the root of the project
tailwind.config.js
Laravel Mix
Laravel Mix is used for the styling and css processing.
Laravel Mix Config File Location
This is at the root of the project
webpack.mix.js
To develop with hot reloading:
npm run watch
To build for production:
npm run build