Skip to content

Commit

Permalink
docs(base): update skeleton directories (#3)
Browse files Browse the repository at this point in the history
docs(base): update skeleton directories
  • Loading branch information
Vigneshkna authored Sep 4, 2024
2 parents c29e4b5 + 1eaf0e1 commit f835cdf
Show file tree
Hide file tree
Showing 17 changed files with 111 additions and 0 deletions.
Empty file added .github/workflows/.gitkeep
Empty file.
88 changes: 88 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
# Python
__pycache__/
*.py[cod]
*.pyo
*.pyd
.Python
*.env
*.venv
*.envrc
python-*.egg-info/

# Distribution / Packaging
dist/
*.egg-info/
.eggs/
*.wheel
pip-log.txt
pip-delete-this-directory.txt

# JavaScript
node_modules/
npm-debug.log*
package-lock.json

# Logs
logs/
*.log
npm-debug.log*

# Production
dist/

# Docker
docker-compose.yml
.dockerignore
docker-compose.override.yml
docker-compose.*.yml

# Visual Studio Code
.vscode/
.history/
*.code-workspace

# Environment Variables
.env
.env.local
.env.*.local

# Byte-compiled / optimized / DLL files
*.pyc
*.pyo
*.pyd
*.dll
*.so
*.dylib

# Virtual environments
venv/
ENV/
env/
env.bak/
venv.bak/

# IDE
.idea/
.project
.settings/

# macOS
.DS_Store
.AppleDouble
.LSOverride

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
21 changes: 21 additions & 0 deletions SECURITY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Security Policy

## Reporting a Vulnerability

If you discover a security vulnerability within this project, please follow these steps to report it:

1. **Create a New Issue**: Go to the [Issues](../../issues) section of this repository.

2. **Tag the Issue**: Use the **`security`** tag when creating the issue to highlight that it’s a security-related concern.

3. **Provide Details**: Clearly describe the vulnerability, including steps to reproduce it, potential impact, and any suggestions for resolution.

We appreciate your efforts to help improve the security of this project. Your report will be reviewed and addressed as quickly as possible.

## General Security Practices

- Ensure that no sensitive information (such as passwords, API keys, or secrets) is committed to the repository.
- Regularly review dependencies and update them to avoid vulnerabilities in third-party libraries.
- Use secure coding practices to minimize the risk of introducing security vulnerabilities.

Thank you for helping us keep this project secure!
Empty file added assets/.gitkeep
Empty file.
Empty file added build/js/.gitkeep
Empty file.
Empty file added build/linux/.gitkeep
Empty file.
Empty file added build/macos/.gitkeep
Empty file.
Empty file added build/python/.gitkeep
Empty file.
Empty file added build/windows/.gitkeep
Empty file.
1 change: 1 addition & 0 deletions src/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Dockerfile
Empty file added src/js/.gitkeep
Empty file.
Empty file.
Empty file added src/python/setup.py
Empty file.
1 change: 1 addition & 0 deletions src/scripts/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Build.sh
Empty file added tests/js/test_validator.js
Empty file.
Empty file added tests/python/test_validator.py
Empty file.
Empty file added wiki/.gitkeep
Empty file.

0 comments on commit f835cdf

Please sign in to comment.