All Projects → kachidk → atlas

kachidk / atlas

Licence: other
Atlas: A React (Typescript), Laravel, Tailwind & Inertia starter kit. (Jetstream alternative)

Programming Languages

PHP
23972 projects - #3 most used programming language
typescript
32286 projects

Projects that are alternatives of or similar to atlas

inertia
A preset for installing @inertiajs in a fresh Laravel project
Stars: ✭ 80 (+66.67%)
Mutual labels:  inertiajs
jetstream-inertia-generator
Laravel 8 Admin CRUD generator built with Jetstream, Inertia js, Vue 3 and Tailwindcss 2
Stars: ✭ 105 (+118.75%)
Mutual labels:  inertiajs
inertiajs-tables-laravel-query-builder
Inertia.js Tables for Laravel Query Builder
Stars: ✭ 391 (+714.58%)
Mutual labels:  inertiajs
inertia phoenix
Inertiajs Adapter for Elixir Phoenix
Stars: ✭ 60 (+25%)
Mutual labels:  inertiajs
pingcrm-yii2
Ping CRM on Yii 2 - A Yii 2 demo application to illustrate how Inertia.js works.
Stars: ✭ 39 (-18.75%)
Mutual labels:  inertiajs
RailsBooster
Pre-Configured Ruby On Rails Template To Provide Instant Productivity ⚡️
Stars: ✭ 22 (-54.17%)
Mutual labels:  inertiajs
pingcrm-mithril
Ping CRM on Mithril.js - A mithril demo application to illustrate how Inertia.js works.
Stars: ✭ 22 (-54.17%)
Mutual labels:  inertiajs
inertia-go
⏩ The Inertia.js server-side adapter for Go.
Stars: ✭ 49 (+2.08%)
Mutual labels:  inertiajs
satellite
🛰️ Dashboard for probe.
Stars: ✭ 34 (-29.17%)
Mutual labels:  inertiajs
pingcrm-vite
⚡️ PingCRM on Vite Rails - A Vite.js + Inertia.js + Vue SSR + Rails demo
Stars: ✭ 48 (+0%)
Mutual labels:  inertiajs
Horizon
Building ChangeWindows one commit at a time
Stars: ✭ 31 (-35.42%)
Mutual labels:  inertiajs
yii2-inertia
The Yii 2 server-side adapter for Inertia.js.
Stars: ✭ 52 (+8.33%)
Mutual labels:  inertiajs
laravel-scaffold
Laravel + Inertia (Vue) + Tailwind Scaffold for new Projects
Stars: ✭ 33 (-31.25%)
Mutual labels:  inertiajs

Atlas

A Laravel, React (Typescript), Inertia & Tailwind starter kit. (Jetstream alternative)

Includes Laravel Fortify for authentication

Introduction

This starter kit provides a minimal and simple starting point for building a Laravel application with authentication. Styled with Tailwind. It also includes Laravel Fortify which publishes authentication controllers to your application that can be easily customized based on your own application's needs.

This starter is powered by React, Inertia, Tailwind and Laravel.

Includes

  • Laravel v10.0
  • Laravel Fortify v1.7
  • Laravel Sail v1.18
  • React v18.2
  • Inertia React v1.0.2
  • Inertia Laravel v0.6.9
  • Tailwind CSS v3.2
  • Ziggy v1.5

Notable Packages

How do I set this up

Installation Via Composer

If your computer already has PHP and Composer installed, you may create a new project by using Composer directly.

composer create-project nwanguma/atlas <your-project-name>

cd <your-project-name>

npm install

php artisan storage:link

php artisan migrate

npm run dev

php artisan serve

To remove the documentation

  • Windows
    rmdir /s docs
    del README.md
  • Linux
    sudo rm -r docs
    rm README.md

Just Reminders 😅

  • Make Hard Visits with

    Inertia::Location(route('login'));

    Good for those pages that require refresh of sessions, to avoid 419 error (Page Expired).

  • Global alias

    const path = require("path");
    
    export default defineConfig({
      // ...
      resolve: {
        alias: {
          "@": path.resolve(__dirname, "resources/ts"),
        },
      },
    });

    Global alias @ for absolute path imports.

How it looks

Want to Contribute?

Feel free to create a pull request.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].