Skip to content
View avtaniket's full-sized avatar
  • India

Block or report avtaniket

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Install Jenkins on Ubuntu 16.04 Install Jenkins on Ubuntu 16.04
    1
    For AWS EC2
    2
    create Role : aws-ec2-jenkins-role
    3
    
    
    4
    wget -q -O - https://pkg.jenkins.io/debian/jenkins-ci.org.key | sudo apt-key add -
    5
    echo deb https://pkg.jenkins.io/debian-stable binary/ | sudo tee /etc/apt/sources.list.d/jenkins.list
  2. Dockerizing a Node.js web app Dockerizing a Node.js web app
    1
    FROM node:argon
    2
    
    
    3
    # Install softwares
    4
    RUN apt-get update  && \
    5
      apt-get install -y openjdk-7-jdk
  3. Swagger - URL & path parameters inte... Swagger - URL & path parameters integration with AWS gateway
    1
    Swagger file need to update for URL & path parameters integration
    2
    Here
    3
      httpMethod - GET/POST/PUT/DELETE
    4
      uri - SWAGGER url
    5
      requestParameters - is optional if url contains param like {user_id}
  4. NodeJs MongoDB connection using mong... NodeJs MongoDB connection using mongoose
    1
    /**
    2
     * @package [db] - Application db connection & schema loading 
    3
     * @author [anikett] smartData Inc 
    4
     */
    5