Skip to content

prontostack/pronto-fuel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

e7ffe17 ยท Jan 26, 2024

History

28 Commits
Aug 22, 2022
Jan 26, 2024
Jan 4, 2022
Aug 14, 2022
Jan 4, 2022
Aug 14, 2022
Mar 4, 2022
Jan 4, 2022
Jan 30, 2023
Aug 14, 2022
Jan 4, 2022
Feb 7, 2022
Apr 22, 2022
Jan 30, 2023
Jan 30, 2023
Jan 4, 2022
Aug 14, 2022
Jan 4, 2022
Jan 26, 2024
Jan 4, 2022
Jan 26, 2024
Jan 26, 2024
Feb 16, 2022
Aug 22, 2022
Jan 26, 2024
Jan 26, 2024
Jan 4, 2022
Feb 23, 2022
Jan 4, 2022
Aug 22, 2022
Jan 26, 2024

Repository files navigation

Pronto Fuel

Pronto Fuel is a heavilly opnionated starter kit for Laravel and Inertia.js powered by Vite. It ships with autoimporting features and leverages the latest and greatest features from Vue 3.

Features

Quick Start with VSCode Dev Container

# Clone the repo
git clone [email protected]:prontostack/pronto-fuel.git my-app

# Enter the project directory
cd my-app

# Create a .env files based on the provided example one
cp .env.example .env

# Open the project on VSCode
code .

# *****************************************************************
# Install the Remote-Containers extensions if you still haven't
# Open VSCode's command palette (Eg.: ctrl + shift + p on Windows)
# Select "Remote-Containers: Open Folder in Container"
#
# IMPORTANT: The following commands must be executed in the VSCode
# integrated terminal, once the Dev Container has started, since it
# is running inside the container
# *****************************************************************

# Install PHP dependencies
composer install

# Generate an APP key for security
php artisan key:generate

# Create the database tables
php artisan migrate

# Instal frontend dependencies
npm install

# *****************************************************************
# At this point, before you actually run the project, you might
# need to close the remote connection to the Dev Container and
# reopen it. See Troubleshooting below for more info.
# *****************************************************************

# Lift Vite's development server
npm start

# Go to http://localhost

Quick Start without VSCode Dev Container

# Clone the repo
git clone [email protected]:prontostack/pronto-fuel.git my-app

# Enter the project directory
cd my-app

# Create a .env files based on the provided example one
cp .env.example .env

# Install PHP dependencies
composer install

# Generate an APP key for security
php artisan key:generate

# Create the database tables
php artisan migrate

# Instal frontend dependencies
npm install

# Update server configs on vite.config.js
# to be like this
server: {
    port: 3000
},

# Lift Vite's development server

npm start

# Go to http://localhost

Troubleshooting

If you're using the VSCode Dev Container and your home page isn't loading at http://localhost, you probably hit an issue where the PHP container isn't able to find the vendor/autoload.php file you just installed via composer install. In this case, simply close the remote connection to the container and reopen the folder in the container on VSCode.