A basic Skeletton to build a Piko framework based application.
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 yourprojectcd yourproject && php -S localhost:8080 -t webThere 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' => '[email protected]',
]Set DEBUG = 0 and APP_ENV = prod when your project is ready for production.
- Bootstrap 5 integration
- Simple user authentication
- Contact form