Thanks to visit codestin.com
Credit goes to docs.platine-php.com

# Starter project

# Introduction

To give you a head start building your new Platine application, we are happy to offer authentication and application starter kits. These kits automatically scaffold your application with the routes, actions, and views you need to register and authenticate your application's users.

While you are welcome to use these starter kits, they are not required. You are free to build your own application from the ground up by simply installing a fresh copy of Platine. Either way, we know you will build something great!

This starter kits is a minimal, simple implementation of all of Platine's authentication features, including login, registration, ... The default view layer is made up of simple templates styled with Bootstrap CSS (opens new window). This kit provides a wonderful starting point for beginning a fresh Platine application.

# Installation

composer create-project platine-php/starter starter-app
cd starter-app
1
2

Update some settings like database connection information and so on.

php platine migration:init
php platine migration:migrate
php platine seed:exec
php platine server
1
2
3
4

Next, you may navigate to your application URLs in your web browser.