Skip to content

Latest commit

 

History

History
62 lines (42 loc) · 941 Bytes

README.md

File metadata and controls

62 lines (42 loc) · 941 Bytes

Seragam App

Requirement

  1. php 8.2
  2. composer 2.x

Run on your local mechine

  1. Clone repository
git clone https://github.com/abhipraya-kusuma-dev/seragam-app
cd seragam-app
  1. Install dependencies
composer install
npm install
  1. Copy or rename .env.example to .env
cp -r .env.example .env
  1. Setup your project env
php artisan key:generate # Generate Laravel APP_KEY

# Edit your database credentials
DB_DATABASE=seragam_app
DB_USERNAME=root
DB_PASSWORD=

# Socket Server
SOCKET_IO_SERVER='127.0.0.1:3000'

php artisan migrate # Migrate database schema
  1. Run your app
# Laravel app
php artisan serve

# Socket IO
node server.cjs

Conventional Commit Messages

  1. feat: <message> for New Features
  2. fix: <message> for Fixing bug
  3. docs: <message> for Update README.md

conventional commit spec