Giter Site home page Giter Site logo

sugarshin / visual-config-editor Goto Github PK

View Code? Open in Web Editor NEW

This project forked from circleci-public/visual-config-editor

0.0 2.0 0.0 9.55 MB

Generate your CircleCI configuration files by building a visual map of your project's workflows.

Home Page: https://circleci-public.github.io/visual-config-editor/

License: Apache License 2.0

HTML 2.81% CSS 0.38% TypeScript 94.79% JavaScript 2.02%

visual-config-editor's Introduction

CircleCI Visual Configuration Editor

License CircleCI

Generate your CircleCI configuration files by building a visual map of your project's workflows.

This project is currently early access. Features are subject to changes.

Installing

Using npm:

$ npm install

Using yarn:

$ yarn install

Building

Using npm:

$ npm run build

Using yarn:

$ yarn build

Preview

Preview of the CircleCI Visual Config Editor

Example Generated Config

The visual configuration editor verbosely outputs CircleCI configuration. Subject to change with SDK issue #53

# This configuration has been automatically generated by the CircleCI Config SDK.
# For more information, see https://github.com/CircleCI-Public/circleci-config-sdk-ts
# SDK Version: 0.4.0
# VCE Version: 0.1.0
# Modeled with the CircleCI visual config editor.
# For more information, see https://github.com/CircleCI-Public/visual-config-editor

version: 2.1
setup: false
jobs:
  build:
    steps:
      - checkout: {}
      - run:
          command: yarn build
      - persist_to_workspace:
          root: ../
          paths:
            - build
    docker:
      - image: cimg/node:16.11.1
    resource_class: medium
  test:
    steps:
      - attach_workspace:
          at: .
      - run:
          command: yarn test
          working_directory: ~/project/build
      - persist_to_workspace:
          root: .
          paths:
            - build
    docker:
      - image: cimg/node:16.11.1
    resource_class: medium
  deploy:
    steps:
      - attach_workspace:
          at: .
      - run:
          command: yarn deploy
          working_directory: ~/project/build
    docker:
      - image: cimg/node:16.11.1
    resource_class: medium
workflows:
  build-and-test:
    jobs:
      - build: {}
      - test:
          requires:
            - build
      - deploy:
          requires:
            - test

Contributing

This repository welcomes community contributions! See our CONTRIBUTING.md for guidance on configuring your development environment and how to submit quality pull requests.

Built with

CircleCI Config SDK

visual-config-editor's People

Contributors

jaryt avatar jerdog avatar keisukeyamashita avatar

Watchers

James Cloos avatar  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.