Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as:
Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the Laravel documentation.
In order to ensure that the Laravel community is welcoming to all, please review and abide by the Code of Conduct.
If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [email protected]. All security vulnerabilities will be promptly addressed.
https://documenter.getpostman.com/view/17067607/UVsHSSqh
git clone https://github.com/FVSoftwareDeveloper/TicketSystemBackend
cd TicketSystemBackend
need to have postgresql already installed. if you need help to install see link bellow : https://www.2ndquadrant.com/en/blog/pginstaller-install-postgresql/
https://www.pgadmin.org/download/
see link bellow: https://www.guru99.com/postgresql-create-database.html
cp env.example .env
APP_TIMEZONE=America/Santo_Domingo
DB_CONNECTION=pgsql
DB_HOST=127.0.0.1
DB_PORT=5432
DB_DATABASE=tickets
DB_USERNAME=postgres
DB_PASSWORD=postgres
https://devanswers.co/install-composer-php-windows-10/
https://daily-dev-tips.com/posts/installing-php-on-your-mac/
for connections to postgres databases you need to make php driver extension available to do that going to your php installation path (php\php7\php.ini) and uncomment the following extension
$ By Default comes like this
;extension=pdo_pgsql
$ remove initial semicolon
extension=pdo_pgsql
composer update
php artisan key:generate
php artisan jwt:generate
13 - if you would like to have fake data to be insert go to step 15 or if you like to start clean and let laravel create table go to step 14
php artisan migrate
Note: it is required to create manual a initial user into a database
https://www.pgadmin.org/docs/pgadmin4/6.3/restore_dialog.html
php artisan serve
The Laravel framework is open-sourced software licensed under the MIT license.