Skip to content

Latest commit

 

History

History
45 lines (30 loc) · 1.1 KB

README.md

File metadata and controls

45 lines (30 loc) · 1.1 KB

Piko project

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' => '[email protected]',
]

Set DEBUG = 0 and APP_ENV = prod when your project is ready for production.

Project features

  • Bootstrap 5 integration
  • Simple user authentication
  • Contact form

Documentation

https://piko-framework.github.io/