| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Original HTTPS Page] |
Configuration-as-code for your development environment
Codify is a declarative tool for installing and managing developer tools and applications. Turn your system setup into a safe, reproducible process using infrastructure-as-code principles.
Codify lets you define your entire development environment in code. Instead of running dozens of installation commands or clicking through installers, describe what you want installed and let Codify handle the rest.
[
{
"type": "homebrew",
"formulae": ["git", "postgresql", "redis"],
"casks": ["docker"]
},
{
"type": "nvm",
"nodeVersions": ["20.0.0", "18.0.0"],
"defaultVersion": "20.0.0"
},
{
"type": "git-repository",
"parentDirectory": "~/projects",
"repositories": [
"git@github.com:myorg/frontend.git",
"git@github.com:myorg/backend.git"
]
},
{
"type": "vscode"
}
]Run codify apply and your environment is ready.
/bin/bash -c "$(curl -fsSL https://releases.codifycli.com/install.sh)"The main CLI tool. Start here to use Codify for managing your development environment.
TypeScript library for building Codify plugins. Use this to create custom resource managers for your infrastructure-as-code needs.
Testing framework for Codify plugins with lifecycle testing and cross-platform support. Essential for plugin developers.
The default plugin implementation, providing built-in resource types and serving as a reference for plugin development.
# Install Codify
npm install -g codify-cli
# Initialize a new project
codify init
# Apply your configuration
codify applyBuilding a Codify plugin is straightforward with our TypeScript SDK:
import { Plugin, Resource } from 'codify-plugin-core';
class MyCustomResource extends Resource {
async apply() {
// Your resource logic here
}
}Check out codify-plugin-core for the complete API documentation.
We welcome contributions! Check out the individual repositories for specific contribution guidelines.
Made with ❤️ by the Codify team
Default plugin for Codify - provides 50+ declarative resources for managing development tools and system configuration across macOS and Linux
TypeScript library for building Codify plugins to manage system resources (applications, CLI tools, settings) through infrastructure-as-code
Testing framework for Codify plugins with complete lifecycle testing, IPC communication, and cross-platform support
This organization has no public members. You must be a member to see who’s a part of this organization.
Loading…
Loading…
| Back | FazBrowse Home | New Git URL |