This is a stand alone application for parental control(control of their children) made with php laravel by GTEAM
- Move yourself on backend directory
$ cd backend
- Install all dependencies
$ composer install
- Copy
.env.example
to.env
and edit the file according to your environment
$ cp .env.example .env
- Generate the app key
$ php artisan key:generate
- Run migrations to set up tables into databse and fill them up with initials datas (seed)
$ php artisan migrate --seed
- Start the app on the default port (:8000)
$ php artisan serve
- Move yourself on frontend directory
$ cd frontend
- Install all dependencies
$ npm install
- Start the app on the default port (:4200)
$ ng serve