Skip to content

Latest commit

 

History

History
50 lines (38 loc) · 1.21 KB

README.md

File metadata and controls

50 lines (38 loc) · 1.21 KB

Podium

An example app for fielding questions from your audience.

A screenshot of the app

Installation

After cloning this repo, run the following commands from your project root:

cp .env.example .env
composer install
php artisan key:generate
touch database/database.sqlite
php artisan migrate --seed
php artisan flux:activate
npm install
npm run dev

Now, open the project in your browser (Typically http://podium.test) and use the following credentials to log in:

User: test@example.com
Pass: password

Project structure

These are the key files to reference in this project:

podium/
├── routes/
│   └── web.php                      # Main web routes
│
└── resources/
    └── views/
        ├── dashboard.blade.php      # Question dashboard page
        └── livewire/
            └── question/
                ├── show.blade.php   # Question list item
                └── create.blade.php # Create question button & modal

References & documentation