Clone the repo locally:
git clone https://github.com/Manuel-kl/contacts-ms.git
cd contacts-msInstall PHP dependencies:
composer installInstall NPM dependencies:
npm installBuild assets:
npm run devSetup configuration:
cp .env.example .envOpen the .env file and setup your database username and password
DB_USERNAME=your_database_username
DB_PASSWORD=your_database_password
Generate application key:
php artisan key:generateRun database migrations:
php artisan migrateRun database seeder (To seed contacts categories):
php artisan db:seedCreate symbolic link for storage
php artisan storage:linkRun the development server:
php artisan serve