GithubHelp home page GithubHelp logo

data's Introduction

Project setup

  • Navigate to the certain folder in which you want the projects to be create
  • cd Projects/Gh
  • After that create a new file called setup.sh
  • In the setup.sh copy and paste this
 #!/bin/bash
 # My first script

  mkdir BlogInfra
  cd BlogInfra
  git clone [email protected]:kedmenecr/BLUI.git
  cd BLUI
  npm i
  cd ..
  git clone [email protected]:kedmenecr/JWTS.git
  cd JWTS
  npm i
  cd ..
  git clone [email protected]:kedmenecr/GDPR.git
  cd GDPR
  npm i
  cd ..
  git clone [email protected]:kedmenecr/USDB.git
  cd USDB
  npm i
  cd ..
  git clone [email protected]:kedmenecr/DATA.git
  cd DATA
  npm i
  cd ..
  git clone [email protected]:kedmenecr/BLDB.git
  cd BLDB
  npm i
  cd ..
  echo "Cloned all repos"
  • After this you have to grant permissions to the file

    chmod 777 setup.sh
    
  • And for the last step, you have to start it! Just write :

./setup.sh

Pulling all before developing !

  • Navigate to the BlogInfra
cd BlogInfra
  • As before you have to create a new file and copy this content to it

    #!/bin/bash
    # My first script
    cd BLUI
    git checkout master
    git pull origin master
    cd ..
    cd JWTS
    git checkout master
    git pull origin master
    cd ..
    cd GDPR
    git checkout master
    git pull origin master
    cd ..
    cd USDB
    git checkout master
    git pull origin master
    cd ..
    cd DATA
    git checkout master
    git pull origin master
    cd ..
    cd BLDB
    git checkout master
    git pull origin master
    cd ..
    echo "Pulled all repos!"
    
  • Give it permssion as describe up and then just run it. This will pull all the changes

data's People

Contributors

kedmenecr avatar leeixi avatar mmustac avatar ydundie avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.