Add dotenv management extension and necessary files

- Introduced dotenv.bash for importing and exporting .env files to/from the password store.
- Created Makefile for installation instructions.
- Added LICENSE file for compliance with GNU General Public License v3.0.
- Included README.md with detailed usage instructions and installation steps.
- Established .env.file for environment variable configuration.
This commit is contained in:
2025-07-17 22:47:52 +05:30
commit 16a4382feb
5 changed files with 984 additions and 0 deletions

6
Makefile Normal file
View File

@@ -0,0 +1,6 @@
install:
@echo "Installing pass-cli plugin (dotenv.bash)..."
@mkdir -p ~/.password-store/.extensions/
@cp extension/dotenv.bash ~/.password-store/.extensions/
@chmod +x ~/.password-store/.extensions/dotenv.bash
@echo "Installation complete. You can now use 'pass-dotenv'."