hello-world-laravel
An example of how to set your Laravel application up to enable deployment on Kinsta App Hosting services.
File Explorer
Download Latest Version (.zip)- Kernel.php
- Handler.php
- Controller.php
- Authenticate.php
- EncryptCookies.php
- PreventRequestsDuringMaintenance.php
- RedirectIfAuthenticated.php
- TrimStrings.php
- TrustHosts.php
- TrustProxies.php
- ValidateSignature.php
- VerifyCsrfToken.php
- Kernel.php
- User.php
- AppServiceProvider.php
- AuthServiceProvider.php
- BroadcastServiceProvider.php
- EventServiceProvider.php
- RouteServiceProvider.php
- .gitignore
- app.php
- app.php
- auth.php
- broadcasting.php
- cache.php
- cors.php
- database.php
- filesystems.php
- hashing.php
- logging.php
- mail.php
- queue.php
- sanctum.php
- services.php
- session.php
- view.php
- UserFactory.php
- 2014_10_12_000000_create_users_table.php
- 2014_10_12_100000_create_password_resets_table.php
- 2019_08_19_000000_create_failed_jobs_table.php
- 2019_12_14_000001_create_personal_access_tokens_table.php
- DatabaseSeeder.php
- .gitignore
- auth.php
- pagination.php
- passwords.php
- validation.php
- .htaccess
- favicon.ico
- index.php
- robots.txt
- app.css
- app.js
- bootstrap.js
- welcome.blade.php
- api.php
- channels.php
- console.php
- web.php
- .gitignore
- .gitignore
- .gitignore
- .gitignore
- .gitignore
- .gitignore
- .gitignore
- .gitignore
- .gitignore
- ExampleTest.php
- ExampleTest.php
- CreatesApplication.php
- TestCase.php
- .editorconfig
- .env.example
- .gitattributes
- .gitignore
- .htaccess
- artisan
- composer.json
- composer.lock
- LICENSE
- package-lock.json
- package.json
- phpunit.xml
- README.md
- vite.config.js
# Installation Guide
1. Get the code
git clone https://github.com/kinsta/hello-world-laravel
Downloads the entire project code from GitHub to your computer.
cd hello-world-laravel
Moves into the project folder you just downloaded.
2. Node.js
Easy RecommendedPrerequisites
npm install
Downloads and installs the libraries listed in package.json.
npm start
Starts the development/run server.
After running the command, open the address shown in the terminal (usually something like http://localhost:3000) in your browser.
3. PHP (Composer)
EasyPrerequisites
composer install
Installs the PHP libraries listed in composer.json.
Run it with a built-in server like php -S localhost:8000, then open http://localhost:8000 in your browser.
// repository documentation
Was this content helpful?
(0 ratings)
