Skip to content

Instantly share code, notes, and snippets.

View NOPROD's full-sized avatar
:octocat:

Boucham ☄️ NOPROD

:octocat:
View GitHub Profile

Mettre en production un projet Symfony 4 sur un VPS OVH

VPS OVH | Ubuntu 16.04.3 LTS | LAMP | SYMFONY 4

Pré-requis

  • Votre projet doit être versionné avec git et hébergé (Github, Bitbucket...).
  • Vous devez avoir acheté un VPS et un nom de domaine.
  • Vous devez également générer une clé SSH sur votre ordinateur. (explications ci-dessous)

Création et ajout de la clé SSH au profil OVH

@NOPROD
NOPROD / nodejs-cheatsheet.js
Created September 1, 2020 19:44 — forked from LeCoupa/nodejs-cheatsheet.js
Complete Node.js CheatSheet --> UPDATED VERSION --> https://github.com/LeCoupa/awesome-cheatsheets
/* *******************************************************************************************
* THE UPDATED VERSION IS AVAILABLE AT
* https://github.com/LeCoupa/awesome-cheatsheets
* ******************************************************************************************* */
// 0. Synopsis.
// http://nodejs.org/api/synopsis.html
@NOPROD
NOPROD / rxjs-diagrams.md
Created December 18, 2018 23:18 — forked from SangKa/rxjs-diagrams.md
Super Intuitive Interactive Diagrams to learn combining RxJS sequences by Max NgWizard K
@NOPROD
NOPROD / rxJs: Filter-Buffer #SubmitWhenPushSpace
Last active December 19, 2018 10:07
rxjs: pipe/map/filter
const { fromEvent, interval, forEach, Observable } = Rx;
const { take, mergeAll, concatAll, pluck,
debounce, map,
filter, scan, groupBy,
buffer, bufferToggle, bufferWhen,
startWith, bufferCount,
bufferTime, delay, switchMap } = RxOperators;
const sqrt = source$ => Observable.create(observable =>