piko / project
Application skeletton for a Piko framework based project.
Installs: 44
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Type:project
Requires
- piko/framework: ^3.2
- piko/user: ^2.0
README
A basic Skeletton to build a Piko framework based application.
Install via composer
If you do not have Composer, you may install it by following the instructions at getcomposer.org.
You can then install this project template using the following command:
composer create-project piko/project yourproject
Run using the PHP built-in web server
cd yourproject && php -S localhost:8080 -t web
Environment file
There is a file named env.php
at the root of the project. This file contains some environment variables :
return [ 'DEBUG' => '1', 'APP_ENV' => 'dev', 'APP_LANGUAGE' => 'en', 'SITE_EMAIL' => 'youremail@somehost.com', ]
Set DEBUG = 0
and APP_ENV = prod
when your project is ready for production.
Project features
- Bootstrap 5 integration
- Simple user authentication
- Contact form