Installation
Installation
System Requirements
| Tool | Version |
|---|---|
| PHP | >= 8.2 |
| Node.js | >= 20 |
| MySQL | >= 8.0 |
| Composer | >= 2.x |
Quick Start
1. Clone the repository
git clone https://github.com/org/myno-platform
cd apps/landing
2. Install dependencies
composer install
npm install && npm run build
3. Configure environment
cp .env.example .env
php artisan key:generate
Update .env with your database credentials:
DB_DATABASE=myno
DB_USERNAME=root
DB_PASSWORD=secret
4. Run migrations
php artisan migrate --seed
Tip: Use
php artisan servefor local development athttp://localhost:8000.