ER Diagram / Diagrama ER: http://bit.ly/fisherapp-er-diagram
FisherApp manual: http://bit.ly/fisherapp-manual
English
FisherApp is a platform which fishers can schedule fishings with their friends and save the data of their fished fishes.
Português
FisherApp é uma plataforma na qual pescadores podem agendar pescarias com seus amigos e salvar nela as informações de seus peixes pescados.
- Laravel (back-end framework)
- Bootstrap (css framework)
- Leaflet (for the maps in the platform / para os mapas na plataforma)
- MySQL/MariaDB (Database)
Initial steps
$ git clone https://github.com/ruifernandees/fisherapp.git
$ cd fisherapp
Create database (MySQL/MariaDB)
CREATE DATABASE fisherapp;
Project setup
# Install PHP dependencies
$ composer install
# Install JS dependencies
$ npm install
# Run all migrations
$ php artisan migrate
# Run the UserSeeder seed, that creates some users
$ php artisan db:seed --class=UserSeeder
Run project
# Run the project
$ php artisan serve
# Run npm
$ npm run dev