Skip to content

Latest commit

 

History

History
54 lines (42 loc) · 903 Bytes

README.md

File metadata and controls

54 lines (42 loc) · 903 Bytes

parental-control-server

This is a stand alone application for parental control(control of their children) made with php laravel by GTEAM

Application deployment procedure.

Back-End Laravel

  1. Move yourself on backend directory
$ cd backend
  1. Install all dependencies
$ composer install
  1. Copy .env.example to .env and edit the file according to your environment
$ cp .env.example .env
  1. Generate the app key
$ php artisan key:generate
  1. Run migrations to set up tables into databse and fill them up with initials datas (seed)
$ php artisan migrate --seed
  1. Start the app on the default port (:8000)
$ php artisan serve

Front-End Angular

  1. Move yourself on frontend directory
$ cd frontend
  1. Install all dependencies
$ npm install
  1. Start the app on the default port (:4200)
$ ng serve

ged-server