Using Laravel Inertia REact TypeScript made by @dotangad
- Clone the repository
git clone https://github.com/kavinvalli/sudocrypt-v11.git
- Install dependencies
composer install && npm i
- Fill out .env
cp .env.example .env
- Run the app
- Using Docker (Sail)
./vendor/bin/sail up -d ./vendor/bin/sail artisan websockets:serve # FOR REALTIME NOTIFICATIONS ./vendor/bin/sail artisan discord:run # FOR DISCORD BOT
- Using Laravel Valet
- Follow the docs
- Run Websockets
php artisan websockets:serve
- Run Discord Bot code (you will have to setup the discord api creds for this in .env)
php artisan discord:run
- Watch for frontend changes
npm run watch