Skip to content

Commit

Permalink
feat: initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
maehr committed Mar 18, 2024
1 parent f175a37 commit 8e4927b
Show file tree
Hide file tree
Showing 52 changed files with 255 additions and 2,147 deletions.
35 changes: 0 additions & 35 deletions .github/ISSUE_TEMPLATE/bug_report.yml

This file was deleted.

8 changes: 0 additions & 8 deletions .github/ISSUE_TEMPLATE/config.yml

This file was deleted.

32 changes: 0 additions & 32 deletions .github/ISSUE_TEMPLATE/data_issue_report.yml

This file was deleted.

23 changes: 0 additions & 23 deletions .github/ISSUE_TEMPLATE/docs_issue.yml

This file was deleted.

22 changes: 0 additions & 22 deletions .github/ISSUE_TEMPLATE/feature_request.yml

This file was deleted.

35 changes: 0 additions & 35 deletions .github/labeler.yml

This file was deleted.

22 changes: 0 additions & 22 deletions .github/pull_request_template.md

This file was deleted.

25 changes: 0 additions & 25 deletions .github/workflows/changelog.yaml

This file was deleted.

13 changes: 0 additions & 13 deletions .github/workflows/greetings.yml

This file was deleted.

12 changes: 0 additions & 12 deletions .github/workflows/label.yml

This file was deleted.

99 changes: 89 additions & 10 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
# Exclude example.env
!example.env

# Created by https://www.toptal.com/developers/gitignore/api/git,linux,macos,node,dotenv,windows,visualstudiocode
# Edit at https://www.toptal.com/developers/gitignore?templates=git,linux,macos,node,dotenv,windows,visualstudiocode
# Created by https://www.toptal.com/developers/gitignore/api/git,node,linux,macos,dotenv,windows,visualstudiocode,r
# Edit at https://www.toptal.com/developers/gitignore?templates=git,node,linux,macos,dotenv,windows,visualstudiocode,r

### dotenv ###
.env
Expand Down Expand Up @@ -66,6 +63,10 @@ Network Trash Folder
Temporary Items
.apdisk

### macOS Patch ###
# iCloud generated files
*.icloud

### Node ###
# Logs
logs
Expand Down Expand Up @@ -123,6 +124,9 @@ web_modules/
# Optional eslint cache
.eslintcache

# Optional stylelint cache
.stylelintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
Expand All @@ -138,9 +142,11 @@ web_modules/
# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env.test
.env.production
# dotenv environment variable files
.env.development.local
.env.test.local
.env.production.local
.env.local

# parcel-bundler cache (https://parceljs.org/)
.cache
Expand All @@ -163,6 +169,12 @@ dist
# vuepress build output
.vuepress/dist

# vuepress v2.x temp and cache directory
.temp

# Docusaurus cache and generated files
.docusaurus

# Serverless directories
.serverless/

Expand All @@ -185,17 +197,84 @@ dist
.yarn/install-state.gz
.pnp.*

### Node Patch ###
# Serverless Webpack directories
.webpack/

# Optional stylelint cache

# SvelteKit build / generate output
.svelte-kit

### R ###
# History files
.Rhistory
.Rapp.history

# Session Data files
.RData
.RDataTmp

# User-specific files
.Ruserdata

# Example code in package build process
*-Ex.R

# Output files from R CMD build
/*.tar.gz

# Output files from R CMD check
/*.Rcheck/

# RStudio files
.Rproj.user/

# produced vignettes
vignettes/*.html
vignettes/*.pdf

# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
.httr-oauth

# knitr and R markdown default cache directories
*_cache/
/cache/

# Temporary files created by R markdown
*.utf8.md
*.knit.md

# R Environment Variables
.Renviron

# pkgdown site
docs/

# translation temp files
po/*~

# RStudio Connect folder
rsconnect/

### R.Bookdown Stack ###
# R package: bookdown caching files
/*_files/

### VisualStudioCode ###
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
*.code-workspace
!.vscode/*.code-snippets

# Local History for Visual Studio Code
.history/

# Built Visual Studio Code Extensions
*.vsix

### VisualStudioCode Patch ###
# Ignore all local history of files
.history
Expand Down Expand Up @@ -227,4 +306,4 @@ $RECYCLE.BIN/
# Windows shortcuts
*.lnk

# End of https://www.toptal.com/developers/gitignore/api/git,linux,macos,node,dotenv,windows,visualstudiocode
# End of https://www.toptal.com/developers/gitignore/api/git,node,linux,macos,dotenv,windows,visualstudiocode,r
4 changes: 0 additions & 4 deletions .husky/pre-commit

This file was deleted.

Loading

0 comments on commit 8e4927b

Please sign in to comment.