WaveMaker Docs

WaveMaker Docs

  • Get started
  • Widgets
  • Mobile
  • How-to
  • Enterprise
  • Releases
  • Blog
  • Sign-in

›Teams

Getting started

  • Introduction
  • Walkthrough

Pages

  • Pages Overview
  • Creating a Page
  • Layout and Styles

    • Page Layout
    • Templates
    • Themes
    • Accessibility

    Page Configure

    • Page Artefacts
    • Page Cache
    • Partial Page
    • Page Parameters
    • Examples

    Page Actions

    • Navigation
    • Events

    Custom Development

    • Theme Editor
    • Manual Theme
    • Create Template

SSPA

  • Micro Frontend App

Databases

  • Database Services Overview
  • Database Tools
  • Database Designing

    • Working with Databases
    • Data Modelling
    • DataBase Schema Modes
    • Working with DB Schema
    • Database Views
    • Temporal Support

    Accessing Database

    • Accessing Database

    Queries and Procedures

    • Working with Queries
    • Working with Stored Procedures
    • Version Queries & Procedures
    • Blob Queries and Procedures
    • Queries & Procedures - Java Services

    Database Variables & API

    • Database CRUD
    • CRUD Event Listeners
    • Database APIs
    • Database Service APIs

REST & SOAP

  • Web Services Overview
  • Restful

    • REST Services
    • Secure Server-side Properties
    • REST Request Timeouts
    • REST Services using OAuth 2.0

    SOAP

    • Working with SOAP Services
    • Imported SOAP APIs

    Websocket

    • Working with WebSockets

    APIs

    • API Designer
    • Mocking APIs
    • Swagger Import

    Variables

    • CRUD Variable
    • Service Variable
    • WebSocket Variable

Java Services

  • Java Service
  • Java Services

    • Java Integration Services
    • DB Service Integration
    • Variables for Invocation
    • Generated REST APIs (API Designer)

    Java Services Variables & API

    • Variable for Java Service
    • Java Service APIs

    Source Files

    • Resources and Third-party Libraries
    • Using 3rd party JavaScript files
    • Using 3rd party jar files

Variables & Actions

    Variables

    • Variables Overview
    • Model Variable
    • Device Variables

    Binding

    • Variable Binding
    • Custom Formatter

    Actions

    • Actions
    • Navigation Action
    • Login Action
    • Logout Action
    • Timer Action
    • Notification Action

    Events

    • Events
    • JavaScript Access

Security

    App Security

    • Overview
    • Authentication
    • Authorization
    • Access Levels & Permissions
    • Login Configuration
    • Session Persistence
    • SSL Encryption
    • XSS antisamy policy configuration
    • OWASP
    • XSS Prevention
    • Central Authentication System
    • Token Based Authentication
    • SAML Integration
    • Secure Connection for Deployed Apps
    • Concurrent Sessions
    • HostHeader Injection

    Security Variable and API

    • Security Variables
    • Remember Me
    • Variable for Security Service
    • Security Service APIs

Developer options

  • Test and Run (Preview) Apps
  • Chrome Extension: Devtool
  • Debugging
  • Inspection Framework
  • Build Options
  • WaveMaker Mobile Apps Automation
  • Developer Integration

    • Project User Management
    • Developer Collaboration
    • Extending the Application using IDEs
    • Import, Export & Update Apps
    • Project Shells

    Add-ons

    • Localization
    • Artifacts Repository

Deployment

  • Overview
  • Deployment Profile
  • One-click Deployment
  • WaveMaker CI/CD Pipeline

    • Overview
    • Configuration Profiles
    • Configuration Management
    • Pipelines and Phases

    Pipeline Configuration

    • Default Pipelines in WMO
    • Configure Pipeline in WME

    Deploy to Cloud Providers

    • AWS
    • Azure
    • Google Cloud
    • DigitalOcean

    Pipeline Configuration cont.

    • Phase configurations
    • Webhooks Integration
    • Tests Integration

    Manage Deployed Apps

    • Manage Deployed Apps

    Integrate with your CI/CD Providers

    • Push Code to External repo
    • Custom VCS Integration
    • Export WaveMaker Application
    • Building Project with Maven
    • Build with Docker
    • Jenkins Integration
    • Deploy using Docker Compose
    • Deployment to Heroku

    WaveMaker apps Interation with CDN

    • App Integration with AWS CDN
    • App Integration with Azure CDN

    Deployment to external web servers

    • Application Server Overview
    • Deploy to Tomcat
    • WebSphere
    • JBoss - WildFly
    • WebLogic Server

Connectors

  • Introduction
  • Architecture
  • Import Connectors
  • List of Connectors
  • Build a New Connector

Teams

  • Overview
  • Team Setup
  • Dashboard
  • Manage Users
  • Manage Projects
  • Manage Prefabs
  • Project Branches
  • Manage Roles
  • Code Repository
  • Import VCS Project
  • Team Profile
  • Manage Subscription
  • FAQs
Edit

Import a WaveMaker Project using VCS URL


Create a WaveMaker project using the existing repository URL from VCS (Version Control Systems). For this, you will need VCS clone URL to create a project in WaveMaker Studio.

Supported VCS providers: GitHub and GitLab

Importing VCS Project to WaveMaker Studio

Typically, you may use this feature in the following scenarios:

  • To transfer projects from one VCS provider to another.
  • To change the group/organization name of an existing repository.
note

The repository clone URL should contain WaveMaker code for the project to be imported.

Configure VCS Provider in Teams

The repository clone URL should be of the default VCS. For more information, see Code Repository Setup.

Get the VCS Clone URL

  • Go to the VCS provider. For example, GitHub.
  • Copy the clone URL of the repository. For example, https://github.com/sports-apps/BankManagement.git
  • Using the Clone URL, you create the project in WaveMaker.

Invoking the API

Invoke the API for GitHub and GitLab providers using services like Postman, Curl, and more.

GitHub

Following is a sample API request.

POST

https://www.wavemakeronline.com/edn-services/rest/projects
Sample Request Body
{
    "name": "temporarytwo",
    "displayName": "temporarytwo",
    "description": "",
    "projectType": "APPLICATION",
    "platformType": "WEB",
    "icon": "default.png",
    "vcsRepoURL": "https://github.com/sports-apps/temporarytwo.git",
    "vcsBranch": "developer", // this is optional - see note below
    "artifactVersion": {
    "artifactId": ""
    }
}
note

If the VCS branch is not provided, it picks the branch which is configured as default in the VCS configuration.

GitLab

Following is a sample API request.

POST

https://www.wavemakeronline.com/edn-services/rest/projects
Sample Request Body
{
    "name": "gitlabsports",
    "displayName": "gitlabsports",
    "description": "",
    "projectType": "APPLICATION",
    "platformType": "WEB",
    "icon": "default.png",
    "vcsRepoURL": "https://gitlab.wavemaker.com/wm-test/gitlabsports.git",
    "vcsRepoId": 317, //Provide GitLab projectId
    "vcsBranch": "developer", // this is optional - see note below
    "artifactVersion": {
    "artifactId": ""
    }
}
note

If the VCS branch is not provided, it picks the branch which is configured as default in the VCS configuration.

Last updated on 3/14/2022 by Swetha Kundaram
← Code RepositoryTeam Profile →
  • Importing VCS Project to WaveMaker Studio
    • Configure VCS Provider in Teams
    • Get the VCS Clone URL
  • Invoking the API
    • GitHub
    • GitLab
WaveMaker
  • PRICING
  • PARTNERS
  • CUSTOMERS
  • ABOUT US
  • CONTACT US
Terms of Use | Copyright © 2013-2022 WaveMaker, Inc. All rights reserved.