Clone the repo locally:
git clone https://github.com/aldo555/northpoll-api.git
cd northpoll-apiInstall PHP dependencies:
composer installInstall NPM dependencies:
npm installBuild assets:
npm run devSetup configuration:
cp .env.example .envGenerate application key:
php artisan key:generateCreate an SQLite database. You can also use another database (MySQL, Postgres), simply update your configuration accordingly.
touch database/database.sqliteRun database migrations:
php artisan migrateServe the application:
php artisan serYou're ready to go!