Skip to content

Commit

Permalink
[FRONT] Equipe 2020/2021
Browse files Browse the repository at this point in the history
	modified:   back/Dockerfile
	modified:   front/src/app/core/constants/team_members.ts
	modified:   front/src/app/modules/showcase/home/home.component.html

	modified:   back/Dockerfile
	modified:   back/composer.lock
	modified:   front/src/app/core/constants/team_members.ts
	modified:   front/src/app/modules/showcase/home/home.component.html

	modified:   back/Dockerfile
	modified:   front/src/app/core/constants/team_members.ts
	modified:   front/src/app/modules/showcase/home/home.component.html

	modified:   back/Dockerfile
	modified:   front/src/app/core/constants/team_members.ts
	modified:   front/src/app/modules/showcase/home/home.component.html
  • Loading branch information
MinhNamNguyen committed Oct 31, 2021
1 parent dfce9a6 commit ddf0e26
Show file tree
Hide file tree
Showing 14 changed files with 2,666 additions and 856 deletions.
4 changes: 3 additions & 1 deletion back/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ COPY . /home/numeris

# Composer install
WORKDIR /home/numeris
RUN composer install --no-interaction
RUN composer self-update --2
RUN COMPOSER_MEMORY_LIMIT=-1 composer install --no-interaction


# Final touch
RUN . ~/.bashrc
Expand Down
28 changes: 28 additions & 0 deletions back/app/Http/Controllers/HomeController.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

class HomeController extends Controller
{
/**
* Create a new controller instance.
*
* @return void
*/
public function __construct()
{
$this->middleware('auth');
}

/**
* Show the application dashboard.
*
* @return \Illuminate\Contracts\Support\Renderable
*/
public function index()
{
return view('home');
}
}
10 changes: 10 additions & 0 deletions back/app/ProjectUser.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?php

namespace App;

use Illuminate\Database\Eloquent\Relations\Pivot;

class ProjectUser extends Pivot
{
protected $table = 'project_user';
}
Loading

0 comments on commit ddf0e26

Please sign in to comment.