devenv

An application for settung up new projects/environments based on templates.

/files contains some example templates to poke at.

Purpose

The purpose of this project is to help with the initial setup of a new project. Like creating templated CI/CD pipelines for testing/linting/whatever, base Dockerfiles, Justfiles or Makefiles, etc.

Usage

The root of all commands is

bash devenv

On first run, it will create a default configuration file in its directory.

The default language is any (-l <language>) and the platform is any (-p <platform>).
Both of which need to exist in the configuration file under their respective headings in order to function, however those two exist as defaults in the generated config file.

any is a hard-coded wildcard and will is always a valid language/platform. However, one does need to have a template file for any added via devenv create.

Note: All arguments are case-sensitive (for now)

devenv create

This creates new template files for usage with devenv generate.

As an example, creating a template Dockerfile.

```bash devenv create docker ./Dockerfile

This creates a new template Dockerfile for any language projects for the any platform.

However, a more likely use case is:

devenv -l rust create docker ./Dockerfile

Which creates a template Dockerfile for rust projects on any platform.

```

Templates can currently contain the following placeholders:

devenv generate

This generates a file based on an existing template.

As an example, generating a Dockerfile for a rust language project.

bash devenv -l rust generate docker

If the template is:

```Dockerfile FROM rust:latest

WORKDIR /{ProjectName}

COPY . .

CMD [ "cargo", "run", "--release" ] ```

Then the output file, assuming the project name is rust-project:

```Dockerfile FROM rust:latest

WORKDIR /rust-project

COPY . .

CMD [ "cargo", "run", "--release" ] ```

Written to a file called Dockerfile

devenv config

This is mostly for debug reasons, however it can be helpful.

devenv config path

This will print the path to the configuration file.

bash $ devenv config path /home/user/.config/devenv/config.yml

devenv config regenerate

This will regenerate the configuration file, using the default defined in config.rs

devenv config show

This prints out the current config file as a pretty-printed Rust struct.

Problems