| Crates.io | devenv |
| lib.rs | devenv |
| version | 0.1.0 |
| created_at | 2022-05-11 18:54:49.596469+00 |
| updated_at | 2022-05-11 18:54:49.596469+00 |
| description | An application for settung up new projects/environments based on templates. |
| homepage | https://github.com/lyssieth/devenv |
| repository | https://github.com/lyssieth/devenv |
| max_upload_size | |
| id | 584831 |
| size | 47,111 |
An application for settung up new projects/environments based on templates.
/files contains some example templates to poke at.
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.
The root of all commands is
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 createThis creates new template files for usage with devenv generate.
As an example, creating a template Dockerfile.
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:
{ProjectName}: The name of the project (essentially the current working directory, however in the future maybe the name of the git repo or topmost directory that's a git repo){ProjectName_DashesToUnderscores}: The name of the project with dashes replaced with underscores{ProjectName_Lowercase}: The name of the project with all characters lowercasedevenv generateThis generates a file based on an existing template.
As an example, generating a Dockerfile for a rust language project.
devenv -l rust generate docker
If the template is:
FROM rust:latest
WORKDIR /{ProjectName}
COPY . .
CMD [ "cargo", "run", "--release" ]
Then the output file, assuming the project name is rust-project:
FROM rust:latest
WORKDIR /rust-project
COPY . .
CMD [ "cargo", "run", "--release" ]
Written to a file called Dockerfile
devenv configThis is mostly for debug reasons, however it can be helpful.
devenv config pathThis will print the path to the configuration file.
$ devenv config path
/home/user/.config/devenv/config.yml
devenv config regenerateThis will regenerate the configuration file, using the default defined in config.rs
devenv config showThis prints out the current config file as a pretty-printed Rust struct.