Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ghostzero/nda
https://github.com/ghostzero/nda
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ghostzero/nda
- Owner: ghostzero
- License: mit
- Created: 2022-06-27T18:08:18.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-06-27T18:55:07.000Z (over 2 years ago)
- Last Synced: 2024-11-24T08:15:29.319Z (2 months ago)
- Language: Java
- Size: 66.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# NDA Plugin for IntelliJ-based IDEs
A simple plugin that allows you to prevent opening files like `.env`.
## Getting Started
1. Install a compatible JetBrains IDE, such as IntelliJ IDEA, CLion, PyCharm, or other IntelliJ-based IDEs
2. Launch the IDE and open plugin settings
3. Search for "NDA" and click install
4. Create a new `.nda.json` within the **base path** of your project
5. Add files like `/.env` into the `disallow` section within your `.nda.json` file## Configure `.nda.json`
You use the `.nda.json` file to tell the plugin which files should be disallowed to open.
```json
{
"enabled": true,
"disallow": [
"/.env"
]
}
```