brunocfalcao / go-with-laravel
The skeleton application for the Laravel framework.
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:JavaScript
Type:project
Requires
- php: ^8.1
- guzzlehttp/guzzle: ^7.8
- knplabs/github-api: ^1.7
- laravel/framework: ^10.10
- laravel/sanctum: ^3.2
- laravel/socialite: ^5.8
- laravel/tinker: ^2.8
- laravel/ui: ^4.2
- laravelcollective/html: ^6.4
- lemonsqueezy/laravel: ^1.1
- spatie/laravel-permission: ^5.11
- symfony/event-dispatcher: ^6.3
Requires (Dev)
- fakerphp/faker: ^1.9.1
- laravel/pint: ^1.0
- laravel/sail: ^1.18
- mockery/mockery: ^1.4.4
- nunomaduro/collision: ^7.0
- phpunit/phpunit: ^10.1
- spatie/laravel-ignition: ^2.0
This package is auto-updated.
Last update: 2024-11-09 23:38:26 UTC
README
This repository contains the code for the Bruno Laravel App
Local Development Setup
This documentation assumes you are running OSX or Linux based OS.
Please ensure your local port 80 is not used by local servers.
This documentation assumes you are using a terminal to setup the project
- Clone the repository to your local machine and cd into the directory with
cd Bruno
- Run
composer install
to install the PHP packages for the project - Create the
.env
file by copyingcp .env.example .env
- Run
php artisan key:generate
to generate command helps in the process of encryption so that there is no breach of privacy and private data. - Run
npm install
to install and node modules. You can also run this on your local machine usingnpm install
. - Run
npm run dev
to process the frontend assets. You can also run this on your local machine usingnpm run dev
. - Run
php artisan migrate
to setup the database table and records. - Run
php artisan db:seed --class=RolesAndPermissionsSeeder
to setup the roles in tables. - Run
php artisan db:seed --class=AdminSeeder
to setup the admin record in user table. - Go to
http://localhost:8000
for the local version of the app. - Run
php artisan schedule:run
this command will run to automate the cronjob in application. - Run
php artisan process:orders
this command will have to run after successfull payment through lemonsqueezy to fetch the records in a table of that order and also sending mail to the new user of ThankYou & Reset Password. - Run
php artisan update:products
this command will fetch the products from lemonsqueezy store so you can aceess to download the files from products and can able to download in order section through button.
If you want to use a separate host such as
http://local.bruno.com
, use it in the .env and add0.0.0.0 local.bruno.com
to your local hosts file.
Server Requirements
PHP 8.2.4 node 16.14.2
npm 8.5.0