version: 0.6.0
contxt is a development Tool that aims to help you to keep track of your projects and their related content. do not waist youre time by looking for the right directory, or the right command to execute, just because you have to many projects and they are all different.
-
working with mutliple projects and having one way to build, test and deploy them. this means you can have different projects, they have different build tools, different test tools and different deployment tools. but you can use the same commands to execute them.
-
works in the shell. there is no dependency to any IDE, container setup or any other tool. you can use it in any shell, on any machine, with any project.
-
shared tasks. you can share tasks between projects. so if you have a task that is needed in different projects, you can share them. this means you can have a task that is used in different projects, but the task is only stored once. so if you change the task, it is changed for all projects.
-
template everything. you can use go/template to template any file. also you can use any yaml or json file as value storage. this allows you to create files depending on the current project, or any other context. you can even template source code files, to create different source code files depending on the current project settings.
-
based on json/yaml. the usage of yaml and/or json based Data is a common way to store and exchange data. contxt is also capable to read, manipulate and write them back without having a need to use some external tools like jq. So loading an docker-compose.yml, replacing the image name, and write them back is quite easy.
-
running task. the taskrunner is not build as a replacement for other build tools like make, maven, gradle, gulp, grunt, etc. it is ment as On-Top Tool, to run anything by using the needs for the project. but in a controlled way. you can just let a build fail, or you can let it fail and execute a different task to recover, or whatever make sense. Also you make sure anything is setup by youre needs. So if the build (tests) is failing because the database service was not ready? Add a Listener to the database service, and if the service is ready, the build will be triggered.
check out the releases to get a pre-build package.
any shell is restricted to the current context. this means if you change the directory "inside" the process, the shell will not change the directory "outside" of this process. this is a problem for any tool that is running in a shell and have a need to keep the directory path. If the process is done, the shell is in the same directory as before.
to fix this issue, contxt will be mapped by a shell function called ctx (for contxt itself), and cn for changing directories depending the current project.
this works because shell functions are in same context. so for any supported shell a shell function is needed.
for bash you just need to run contxt install bashrc
. the functions ctx and cn will be created in the .bashrc file
for zsh use contxt install zsh
. the functions ctx and cn will be created in the first directory in the FPATH that is write and readable for the current user.
for fish use contxt install fish
. the functions ctx and cn will be created in the default function directory ~/.config/fish/functions
currently the windows version is work in progess depending the shell integration. but it have close the same behavior like the linux versions, except the contxt mapping as ctx function. it have currently an issue depending automatically change the dir on a switch command. so you need execute the cn
command afterwards, to change into the working dir.
run contxt install powershell
. this will create the cn
and ctx
functions in the current profile. if you not have an profile for the current User in the current workspace, then you need to add the flag --create-profile
if contxt should create them.
the default supported shell on windows is powershell
.
if you have powershell 7 installed, you can set these as default shell as environment variable. $env:CTX_DEFAULT_CMD = "pwsh"
pwsh is one of the possible commands for powershell. they exists also others for previews etc. fit them if needed.
ansii support is disabled as long the default powershell version is lower then 7. you can force the usage of ansii codes with
$env:CTX_COLOR = "ON"
- Workspaces are a set of directories they can be on different places.
- Any path can have different task they can be executed automatically if you enter or leava a workspace. this allows you to setup different needs depending on the workspace.
- any path in a workspace can have a different project and role setting, that can be used as variables in contxt tasks, so this tasks can handle sub projects on different machines, where services, projects (and so on) exists on different paths.
after executing the shell integration steps, you should use ctx
instead of contxt
different to contxt. ctx is a shell function and is able to change the directory. so contxt can still change the workspace, but after runtime, the shell will stay on the directory as before.
but ctx, as a shell function, is able to change the current directory.
note: on windows the
ctx switch
is currently not change the directory. you need runcn
afterwards.
for navigation use the cn
command to change paths depending on the current workspace.
cn
without arguments, will change the directory to the last used path in this workspace.
cn website
will change to the last matching path in the workspace, that contains the word website. if you have multiple paths in the workspace, that contains website, the path is used, they have the word webste more on the right side as others, to get the obvious needed path.
cn 2
will change to the path depending the ndex.
the index is created in order of the path was stored added.
cn website build
similar to cn website
but it looks also if the path build is in the path. so you can be more specific.
ctx workspace new mywork
will create a new workspace named mywork.
ctx dir add
adds the current directory to the workspace. so you have to got to the directory first they needs to
be added to the workspace.
ctx dir rm
removes the current directory from the current workspace. current directory means the actual path (pwd). like add you have to change into this directory.
ctx dir -paths
prints all assigned paths. any path have index.
ctx workspace list
prints all workspaces you have.
ctx switch my-other-work
if this workspace exists you will leave the last one. this means if you have a task assigned to the leave trigger this will be executed for the last workspace. And if you have a task assigned to the enter trigger it will be excuted afterwards.
without to much detail about task. here a example of a task that have a enter and leave action and uses kubectx
and kubens
.
config:
autorun:
onleave: leave
onenter: init
variables:
namespace: production-ns
context: "company-aws"
context-leave: minikube
task:
- id: init
script:
- kubectx ${context}
- kubens ${namespace}
- kubectl get pods
- id: leave
script:
- kubectx ${context-leave}
so if this is the task for a path in workspace company and you run ctx switch company
then the task with id init will be executed and the kubernetes context and namespaces will be set to what is needed there.
but to be sure, if you switch to any other workspace, that might not have any kubernetes related action, the leave task is triggered. in this case it will just set the context to the local minikube to make sure what ever you do, the procution environment is not affected.
you can switch the workspace also just by typing ctx <existing-workspace>
.
this is the main repository for the contxt project. It also contains any package as module instead of having them in different repositories. this is because i am lazy (what is by the way my motivation to write this tool) and i do not want to maintain different repositories. Even more go is able to handle packages independent from the repository. so i can use the same package in different projects, without having a need to copy them.
there are of course more dependencies, but these are important depending working with placeholders and variables. so it is usefull to know how they are working.
go/template extension https://github.com/Masterminds/sprig template docu
The Go language comes with a built-in template language, but not very many template functions. Sprig is a library that provides more than 100 commonly used template functions.
for parsing json by paths https://github.com/tidwall/gjson
GJSON is a Go package that provides a fast and simple way to get values from a json document. It has features such as one line retrieval, dot notation paths, iteration, and parsing json lines.