This tutorial will guide you through the process of deploying multiple MERN apps to a single digital ocean ubuntu VPS droplet Reference
🎯
    - https://rashedul.me | https://elyxxa.com
 
  
    
      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 | |
| /** | |
| * Plugin Name: Activate required plugins. | |
| * Description: Programmatically install and activate plugins based on a runtime config. | |
| * Version: 1.0 | |
| * Author: Hans Schuijff | |
| * Author URI: http://dewitteprins.nl | |
| * License: MIT | |
| * License URI: http://www.opensource.org/licenses/mit-license.php | |
| */ | 
  
    
      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
    
  
  
    
  | # GET VERSION | |
| yarn -v (or --version) | |
| # GET HELP | |
| yarn help | |
| # CREATE PACKAGE.JSON | |
| yarn init | |
| yarn init -y // Use defaults | 
  
    
      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
    
  
  
    
  | /** | |
| * External dependencies | |
| */ | |
| // Load webpack for use of certain webpack tools and methods | |
| const webpack = require( 'webpack' ); | |
| // For extracting CSS (and SASS) into separate files | |
| const ExtractTextPlugin = require( 'extract-text-webpack-plugin' ); | |
| // Main CSS loader for everything but blocks.. | 
A Pen by Angelica Abbate on CodePen.
  
    
      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
    
  
  
    
  | <!-- Navigation bar --> | |
| <div class="navbar navbar-inverse navbar-fixed-top"> | |
| <div class="container"> | |
| <div class="navbar-header"> | |
| <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> | |
| <span class="icon-bar"></span> | |
| <span class="icon-bar"></span> | |
| <span class="icon-bar"></span> | |
| </button> | 
A Pen by Rafaela Lucas on CodePen.
  
    
      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
    
  
  
    
  | <section class="hero"> | |
| <div class="content"> | |
| <div class="header"> | |
| <h1>Simple Responsive Portfolio</h1> | |
| </div> | |
| </div> | |
| </section> | |
| <section class="about-myself"> | |
| <div class="content"> | |
| <h2>Hi !</h2> | 
  
    
      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
    
  
  
    
  | <div class="container-fluid fill light-white-font"> | |
| <div id="menu-button"> | |
| <i class="fa fa-bars fa-3x middle-blue-font"></i> | |
| </div> | |
| <nav id="sidebar" class="hidden"> | |
| <ul class="nav nav-pills nav-stacked list-group"> | |
| <li class="text-uppercase"><a href="#home">Home</a></li> | |
| <li class="text-uppercase"><a href="#projects">Projects</a></li> | |
| <li class="text-uppercase"><a href="#about">About</a></li> | |
| <li class="text-uppercase"><a href="#contact">Contact</a></li> | 
  
    
      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
    
  
  
    
  | <body data-spy="scroll" data-target="#main-nav" data-offset="60"> | |
| <!-- Fixed Navbar --> | |
| <nav id="main-nav" class="navbar navbar-default "> | |
| <div class="container-fluid"> | |
| <div class="navbar-header"> | |
| <!-- Menu Toggle --> | |
| <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#menu" aria-expanded="false"> | |
| <span class="sr-only">Toggle navigation</span> | |
| <span class="glyphicon glyphicon-menu-hamburger"></span> | |
| </button> |