Sopadefideos / GoodLearn

Final work for UGR.
GNU General Public License v3.0
0 stars 0 forks source link

GoodLearn

Final work of Antonio Marfil Sánchez. GoodLearn is an information system focused on educational centers and that serves as a communication channel between parents and teachers.

Starting 🚀

Follow this instruction if you want to start a env of laravel with ionic

1️⃣ Laravel. 📋

Things that you need for run a Laravel project:

Next step is create a new project of Laravel with composer:

composer create-project laravel/laravel example-app

For running the project use that:

cd example-app
php artisan serve

2️⃣ Ionic. 📋

Things that you need for run a Ionic project:

Next step is update npm and install Ionic with these commands:

npm install npm@latest -g
npm install -g @ionic/cli

Now we can create our Ionic app with that command:

ionic start myApp tabs

For running the app use that:

cd myApp
ionic serve

Directories 🔧