All Projects → unboundedsystems → Adapt

unboundedsystems / Adapt

Licence: apache-2.0
ReactJS for your infrastructure. Create and deploy full-stack apps to any infrastructure using the power of React.

Programming Languages

javascript
184084 projects - #8 most used programming language
typescript
32286 projects

Projects that are alternatives of or similar to Adapt

My Links
Knowledge seeks no man
Stars: ✭ 311 (-1.89%)
Mutual labels:  aws, cloud, infrastructure-as-code, devops, containers
Cipi
An Open Source Control Panel for your Cloud! Deploy and manage LEMP apps in one click!
Stars: ✭ 376 (+18.61%)
Mutual labels:  aws, cloud, devops, deployment, deploy
Mist Ce
Mist is an open source, multi-cloud management platform
Stars: ✭ 1,391 (+338.8%)
Mutual labels:  aws, cloud, devops, containers
Training
Container, Monitoring & Logging, Cloud & DevOps Tutorials and Labs
Stars: ✭ 121 (-61.83%)
Mutual labels:  cloud, devops, containers, k8s
Terratag
Terratag is a CLI tool that enables users of Terraform to automatically create and maintain tags across their entire set of AWS, Azure, and GCP resources
Stars: ✭ 385 (+21.45%)
Mutual labels:  aws, cloud, infrastructure-as-code, devops
Howtheyaws
A curated collection of publicly available resources on how technology and tech-savvy organizations around the world use Amazon Web Services (AWS)
Stars: ✭ 389 (+22.71%)
Mutual labels:  aws, cloud, infrastructure-as-code, devops
Terracognita
Reads from existing Cloud Providers (reverse Terraform) and generates your infrastructure as code on Terraform configuration
Stars: ✭ 452 (+42.59%)
Mutual labels:  aws, cloud, infrastructure-as-code, devops
Touchdown
Cloud service orchestration framework for python
Stars: ✭ 10 (-96.85%)
Mutual labels:  aws, cloud, devops, deployment
Geodesic
🚀 Geodesic is a DevOps Linux Distro. We use it as a cloud automation shell. It's the fastest way to get up and running with a rock solid Open Source toolchain. ★ this repo! https://slack.cloudposse.com/
Stars: ✭ 629 (+98.42%)
Mutual labels:  aws, infrastructure-as-code, containers, k8s
Docker Swarm
🐳🐳🐳 This repository is part of a blog series on Docker Swarm example using VirtualBox, OVH Openstack, Azure and Amazon Web Services AWS
Stars: ✭ 43 (-86.44%)
Mutual labels:  aws, cloud, infrastructure-as-code, devops
Pulumi
Pulumi - Developer-First Infrastructure as Code. Your Cloud, Your Language, Your Way 🚀
Stars: ✭ 10,887 (+3334.38%)
Mutual labels:  aws, cloud, infrastructure-as-code, containers
Seldon Server
Machine Learning Platform and Recommendation Engine built on Kubernetes
Stars: ✭ 1,435 (+352.68%)
Mutual labels:  aws, cloud, deployment
Toc
A Table of Contents of all Gruntwork Code
Stars: ✭ 111 (-64.98%)
Mutual labels:  aws, infrastructure-as-code, devops
Awstaghelper
AWS bulk tagging tool
Stars: ✭ 98 (-69.09%)
Mutual labels:  aws, cloud, devops
Terrascan
Detect compliance and security violations across Infrastructure as Code to mitigate risk before provisioning cloud native infrastructure.
Stars: ✭ 2,687 (+747.63%)
Mutual labels:  aws, infrastructure-as-code, devops
Ecs Formation
Tool to build Docker cluster composition for Amazon EC2 Container Service(ECS)
Stars: ✭ 114 (-64.04%)
Mutual labels:  aws, devops, deployment
Terraform
Terraform automation for Cloud
Stars: ✭ 121 (-61.83%)
Mutual labels:  aws, infrastructure-as-code, devops
Learn Devops
🚧 Learn the craft of "DevOps" (Developer Operations) to Deploy your App and Monitor it so it stays "Up"!
Stars: ✭ 139 (-56.15%)
Mutual labels:  aws, devops, deployment
Ccat
Cloud Container Attack Tool (CCAT) is a tool for testing security of container environments.
Stars: ✭ 300 (-5.36%)
Mutual labels:  aws, cloud, k8s
Cfn Sphere
AWS CloudFormation stack management tool
Stars: ✭ 76 (-76.03%)
Mutual labels:  aws, cloud, infrastructure-as-code

Adapt logo

npm npm Gitter License

Adapt - ReactJS for your infrastructure.

AdaptJS is a system to easily, reliably, and repeatably deploy your full-stack applications. Adapt specifications look like React apps, but instead of rendering browser DOM elements like <input>, or <div>, Adapt specifications use elements like AWS <EC2Instance>, Kubernetes <Pod>, or <MongoDB> database. An Adapt description for a complete front end and back end app stack looks like this:

import Adapt from "@adpt/core";
import { NodeService, ReactApp } from "@adpt/cloud/nodejs";
import { Postgres } from "@adpt/cloud/postgres";

function MyApp() {
  const pg = Adapt.handle();

  return (
    <Adapt.Group>
      <ReactApp srcDir="../frontend" />
      <NodeService srcDir="../backend" connectTo={pg} />
      <Postgres handle={pg} />
    </Adapt.Group>
  );
}

Each of the components above renders to simpler components until they get to primitive infrastructure. You can also specify a style sheet to customize how components render to infrastructure (e.g., Docker vs. Kubernetes vs. AWS). Styles can also swap out components entirely, for example, using a test database for your test environment and a hosted database service for production.

If you're already familiar with React, you'll feel right at home with Adapt. But if not, don't worry, knowledge of React isn't required to start using Adapt. You can get started with a starter, write your code and deploy, and come back to the Adapt specification when you need to change how it gets deployed.

Getting Started

For a new project, it's easy to get started with Adapt by using a starter template. The Getting Started Guide will walk through installing Adapt and deploying your first starter app.

Creating and deploying an app

This example creates a new full-stack app from a starter template. It has a React UI, an Nginx web server, a Node.js API server, and a Postgres database, then deploys it to Kubernetes:

# Install adapt
npm install -g @adpt/cli

# Create a new app from a starter template
adapt new hello-react-node-postgres ./myapp
cd myapp/deploy

# Deploy full stack locally using Docker
adapt run laptop

# Or just as easily deploy everything to Kubernetes
adapt run k8s-test

Adapt in action

This demo shows using Adapt to create and deploy a simple app called MovieDB that has a React UI, an Nginx web server, an Nginx URL router, a Node.js API server, and a Postgres database, then deploys it to Kubernetes:

Adapt in action

More info

Getting Help

Gitter

We'd love to hear about your experience with Adapt! Join us on our Gitter channel to ask questions or to give us your feedback and suggestions.

If you've found a bug, you can also file an issue.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].