Dotfile manager using the Devinstaller framework
Project description
Ddot
Your dev environment manager
[[TOC]]
Introduction
Ddot is a devinstaller application created using the devinstaller framework.
Getting Started
pipx run ddot run
There needs to be a devfile in the current directory. Any one of these:
devfile.toml
devfile.yaml
ordevfile.yml
devfile.json
Installation
There are two method to use the application:
- Using Pipx to directly run the application
- Installing the application on your machine
Using Pipx method is recommended.
Method 1: Using Pipx
Why this method is recommended?
You can use Pipx to directly run the latest version of ddot without installing it in your machine. This way your machine stays clean and you don't need to worry about updating ddot.
You can also install ddot in your machine using pipx if that's what you want.
Usage without installation
- Install pipx
- On MacOS
brew install pipx
pipx ensurepath
- Other OS
python3 -m pip install --user pipx
python3 -m pipx ensurepath
for more information check out Pipx.
- Using ddot
pipx run ddot <command> # Example: pipx run ddot run --verbose
Please note that the commands in the section below will need the pipx run
prefix with this method. Other method
doesn't require this prefix.
Usage with installation
pipx install ddot
Method 2: Machine installation
You can also install ddot without pipx. Although this is discouraged as ddot may disturb your system packages.
python -m pip install ddot
Commands
- Show the ddot version
ddot --version
- Show the help menu
ddot --help
- Show all the modules available in the devfile
ddot show
- Execute the modules
ddot run
This command will open up a interactive prompt which you can use to navigate and select all the modules you want to execute.
You select modules using your SPACEBAR key and naviage using your ARROW keys.
- You can also skip the interactive prompt by running
ddot run -m <module name>
Here <module name>
is the name of the module in the devfile at the current directory.
- You can also specify the location to the devfile if it's not present in the current directory or if it's named differently
ddot run --spec-file <spec file location>
- You can also set the verbose flag using
ddot run --verbose
By default the verbose mode is disabled, so you won't see any of the commands that are being executed but instead will see a progress bar.
But if you need to see it just run using the verbose flag.
What is Devinstaller?
Devinstaller is a framework to execute the devfiles.
What are devfiles?
Devfiles is made up of 2 file:
- Spec file
- Prog file
Spec file?
The guiding principle behind the Spec file is to give a declarative and a platform agnostic way to specify a task which then can be handled by the devinstaller application and make that happen.
In Devinstaller the basic building block for anything is called a "module".
And you execute/install the module to do something.
Modules
We have modules for:
-
file
-
folder
-
link
-
app
-
phony
-
group
-
file
,folder
andlink
modules Say you want to create a file in a declarative way. For this you use the file module and specify where and what the file is and the devinstaller will handle how to create/update/delete the file.This way your file module is declarative and the application handles everything required to make it happen, including on how to do it on different OS.
This is how the
file
,folder
and thelink
module works. -
app
module Then we have theapp
module. App module is for system applications. Here you need to write in some imperative instructions on how a specific application is to be installed. But the beauty behind this you can add in instructions on how to do the same on different platforms and the overall module becomes declarative for other users.Example: You can write up the instructions to install ddot on different OS in a devfile, which an another user can import the devfile into their devfile and it will give them a declarative way to install ddot on their machine and they don't have to worry about how it's going to be done.
-
phony
andgroup
module But we understand that not everything can be put in a declarative way so for those cases we have thegroup
and thephony
module. You can combine these modules in any fashion to translate your imperative instructions into a more declarative way.
-
dGenerate
For writing up spec file you can use the web application dGenerate or you can write it in any text editor.
Using dGenerate will give you better user experience.
-
Features of dGenerate
-
Write and save in any file format. Formats supported include:
- TOML
- YAML
- JSON
-
You can upload existing devfile and do some changes and download it.
-
You can share the link to your dGenerate devfile and send it to anyone. And they can go to the link make their changes and download it.
-
dGenerate is a completely offline application and it doesn't send any data to any servers. So you can be assured of the safety of your data. Even for generating the share link for your devfile, we don't store any data on any server. All the data required are in the link itself. You might have probably noticed that all the share links are unusually long and now you know the reason for it.
-
Prog file?
TODO
License
MIT License
Copyright (c) 2021 Justine Kizhakkinedath
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file ddot-0.4.0.tar.gz
.
File metadata
- Download URL: ddot-0.4.0.tar.gz
- Upload date:
- Size: 8.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.8.6 Darwin/18.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c25b6424c40058c02f79f5ead6b2c727eb85a852eeb7d7f8af74a006ec94d9c5 |
|
MD5 | 0edc2435b8ba431d8e23ff09d8c89f4b |
|
BLAKE2b-256 | 1e857866a41b45df8b3405b2a88ece5f1bbeae0e38b061fdde99dfd054d8f702 |
File details
Details for the file ddot-0.4.0-py3-none-any.whl
.
File metadata
- Download URL: ddot-0.4.0-py3-none-any.whl
- Upload date:
- Size: 8.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.8.6 Darwin/18.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 31f1781d1b84ba268aa83158961a4330b14cd176e5de5c17f54962de44aa0c61 |
|
MD5 | 7e7411fe1366e3677928ca103dc65829 |
|
BLAKE2b-256 | 19c9ab83cff3015d2bc2d1a04aa522c9b57c2a8b682340457e9ef6160c9d790e |