Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
tareeqa committed Aug 16, 2024
0 parents commit 0421044
Show file tree
Hide file tree
Showing 3 changed files with 142 additions and 0 deletions.
131 changes: 131 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,131 @@
###### Nylas Developing #####
# Used to store sync snapshots. See redwood/admin/snapshot
.snapshots

# Used to store local data generated from dev runs like logs and message
# parts
.dev_data

# Used by nylas/services/sync/scripts/compare-account-status
account_statuses.*


###### Nylas Testing #####
# Unit test / coverage reports
.cache
.coverage
.hypothesis
nosetests.xml
pytestdebug.log
.pytest_cache
.test_data/

###### Nylas Building #####
# Ignorable Debian files when dpkg runs
debian/cloud-core*
debian/debhelper-build-stamp
debian/.debhelper
debian/files
build/

# Build dirs for FaaS systems (e.g. AWS Lambda)
fn_build/


###### Python #####
# Ignore common virtualenv names
venv
.venv
venv3
.venv3

# Created when installing python packages
*.egg
*.egg-info
.Python
bin/wheel
pip-log.txt
pip-selfcheck.json

# Ignore Python binary files & metadata
*.py[cod]
__pycache__

# Used for mypy linter
.mypy_cache

# pycharm
.idea/

# autoflake
.magicindex.json


###### Javascript #####
node_modules
lerna-debug.log
npm-debug.log
yarn-error.log
package-lock.json

###### OS #####
# Ignore Mac folder metadata
.DS_Store

# Vagrant
.vagrant

# Translations
*.mo

# vim temporary files
*.swp
*.swo

# emacs files
*~
*#

# ctags
tags
TAGS
.tags
.tags1

# terraform state directories
.terraform/
*.tfstate.backup
.terraform

# terragrunt exclusions
.terragrunt-cache/
provider.tf
backend.tf

# Ignore local vimrcs
.vimrc
.vemv/

# Ignore VS Code files
.vscode

# For Ack ignores that aren't in .gitignore
.ignore

###### Infrastructure ######
# Ansible
.boto
vault-password-file.txt
.vaults.txt
.ansible-test

# Elastic Beanstalk Files
.elasticbeanstalk/*
!.elasticbeanstalk/*.cfg.yml
!.elasticbeanstalk/*.global.yml

# testing area
area51

###### Docker ######
!.docker/**
9 changes: 9 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
default_stages: [commit]
repos:
# GitGuardian
- repo: https://github.com/gitguardian/ggshield
rev: v1.27.0
hooks:
- id: ggshield
language_version: python3
stages: [commit]
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# StandardTemplate
Standard template with branch protections

0 comments on commit 0421044

Please sign in to comment.