-
Install Putty and related utilities
-
Set system environment variable in Windows(Control Panel\System and Security\System --> and clicking on "Advanced system settings" in the left pane. Then click on "Environment Variables") GIT_SSH=%path_to_plink.exe% (Note plink.exe goes into wherever you installed Putty)
-
Generate a ssh key using puttygen.exe (ssh2-rsa, 4096, comment=GitLab, and set a passphrase)
-
Add key to pageant.exe and the public key to your GitLab profile
-
Ensure you start a new command shell so that git recognizes the GIT_SSH value
-
Try these two commands to check connection first. This should give you a popup window that authenticates connection
-
set Git putty [email protected]:%user%/%repo.git%
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM php:fpm | |
# Install packages | |
RUN apt-get update | |
RUN apt-get install -y unzip | |
RUN apt-get install -y libaio1 | |
# Oracle instantclient | |
ADD instantclient-basic-linux.x64-11.2.0.4.0.zip /tmp/ | |
ADD instantclient-sdk-linux.x64-11.2.0.4.0.zip /tmp/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
Route::group(['prefix' => 'admin'], function () | |
{ | |
Voyager::routes(); | |
Route::post('logout', ['uses' => 'Auth\LoginController@logout'])->name('voyager.logout'); | |
Route::post('login', ['uses' => 'Auth\LoginController@login'])->name('voyager.postlogin'); | |
Route::get('login', ['uses' => 'Auth\LoginController@showLoginForm'])->name('voyager.login'); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Get the needed authorization credentials from the request. | |
* | |
* @param \Illuminate\Http\Request $request | |
* @return array | |
*/ | |
protected function credentials(Request $request) | |
{ | |
$field = filter_var($request->get($this->username()), FILTER_VALIDATE_EMAIL) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Illuminate\Database\Seeder; | |
class OauthTablesReservation extends Seeder | |
{ | |
/** | |
* Run the database seeds. | |
* | |
* @return void |