loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[skip ci] Updated licenses and gitignores

(cherry picked from commit c6854202be9eb8358f046871d4eb0e4fd74639ff)

authored by

GiteaBot and committed by
Earl Warren
12528ae7 e754f247

+122 -51
+44
options/gitignore/Alteryx
··· 1 + # gitignore template for Alteryx Designer 2 + # website: https://www.alteryx.com/ 3 + # website: https://help.alteryx.com/current/designer/alteryx-file-types 4 + 5 + # Alteryx Data Files 6 + *.yxdb 7 + *.cydb 8 + *.cyidx 9 + *.rptx 10 + *.vvf 11 + *.aws 12 + 13 + # Alteryx Special Files 14 + *.yxwv 15 + *.yxft 16 + *.yxbe 17 + *.bak 18 + *.pcxml 19 + *.log 20 + *.bin 21 + *.yxlang 22 + CASS.ini 23 + 24 + # Alteryx License Files 25 + *.yxlc 26 + *.slc 27 + *.cylc 28 + *.alc 29 + *.gzlc 30 + 31 + ## gitignore reference sites 32 + # https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository#Ignoring-Files 33 + # https://git-scm.com/docs/gitignore 34 + # https://help.github.com/articles/ignoring-files/ 35 + 36 + ## Useful knowledge from stackoverflow 37 + # Even if you haven't tracked the files so far, git seems to be able to "know" about them even after you add them to .gitignore. 38 + # WARNING: First commit your current changes, or you will lose them. 39 + # Then run the following commands from the top folder of your git repo: 40 + # git rm -r --cached . 41 + # git add . 42 + # git commit -m "fixed untracked files" 43 + 44 + # author: Kacper Ksieski
+2
options/gitignore/Archives
··· 14 14 *.lzma 15 15 *.cab 16 16 *.xar 17 + *.zst 18 + *.tzst 17 19 18 20 # Packing-only formats 19 21 *.iso
+11
options/gitignore/Ballerina
··· 1 + # generated files 2 + target/ 3 + generated/ 4 + 5 + # dependencies 6 + Dependencies.toml 7 + 8 + # config files 9 + Config.toml 10 + # the config files used for testing, Uncomment the following line if you want to commit the test config files 11 + #!**/tests/Config.toml
+1
options/gitignore/CMake
··· 9 9 compile_commands.json 10 10 CTestTestfile.cmake 11 11 _deps 12 + CMakeUserPresets.json
+12
options/gitignore/Delphi
··· 26 26 #*.obj 27 27 # 28 28 29 + # Default Delphi compiler directories 30 + # Content of this directories are generated with each Compile/Construct of a project. 31 + # Most of the time, files here have not there place in a code repository. 32 + #Win32/ 33 + #Win64/ 34 + #OSX64/ 35 + #OSXARM64/ 36 + #Android/ 37 + #Android64/ 38 + #iOSDevice64/ 39 + #Linux64/ 40 + 29 41 # Delphi compiler-generated binaries (safe to delete) 30 42 *.exe 31 43 *.dll
+18
options/gitignore/GitHubPages
··· 1 + # This .gitignore is appropriate for repositories deployed to GitHub Pages and using 2 + # a Gemfile as specified at https://github.com/github/pages-gem#conventional 3 + 4 + # Basic Jekyll gitignores (synchronize to Jekyll.gitignore) 5 + _site/ 6 + .sass-cache/ 7 + .jekyll-cache/ 8 + .jekyll-metadata 9 + 10 + # Additional Ruby/bundler ignore for when you run: bundle install 11 + /vendor 12 + 13 + # Specific ignore for GitHub Pages 14 + # GitHub Pages will always use its own deployed version of pages-gem 15 + # This means GitHub Pages will NOT use your Gemfile.lock and therefore it is 16 + # counterproductive to check this file into the repository. 17 + # Details at https://github.com/github/pages-gem/issues/768 18 + Gemfile.lock
+3
options/gitignore/Go
··· 20 20 # Go workspace file 21 21 go.work 22 22 go.work.sum 23 + 24 + # env file 25 + .env
-17
options/gitignore/Objective-C
··· 5 5 ## User settings 6 6 xcuserdata/ 7 7 8 - ## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9) 9 - *.xcscmblueprint 10 - *.xccheckout 11 - 12 - ## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4) 13 - build/ 14 - DerivedData/ 15 - *.moved-aside 16 - *.pbxuser 17 - !default.pbxuser 18 - *.mode1v3 19 - !default.mode1v3 20 - *.mode2v3 21 - !default.mode2v3 22 - *.perspectivev3 23 - !default.perspectivev3 24 - 25 8 ## Obj-C/Swift specific 26 9 *.hmap 27 10
+7
options/gitignore/Rust
··· 12 12 13 13 # MSVC Windows builds of rustc generate these, which store debugging information 14 14 *.pdb 15 + 16 + # RustRover 17 + # JetBrains specific template is maintained in a separate JetBrains.gitignore that can 18 + # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore 19 + # and can be added to the global gitignore or merged into this file. For a more nuclear 20 + # option (not recommended) you can uncomment the following to ignore the entire idea folder. 21 + #.idea/
-28
options/gitignore/Swift
··· 5 5 ## User settings 6 6 xcuserdata/ 7 7 8 - ## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9) 9 - *.xcscmblueprint 10 - *.xccheckout 11 - 12 - ## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4) 13 - build/ 14 - DerivedData/ 15 - *.moved-aside 16 - *.pbxuser 17 - !default.pbxuser 18 - *.mode1v3 19 - !default.mode1v3 20 - *.mode2v3 21 - !default.mode2v3 22 - *.perspectivev3 23 - !default.perspectivev3 24 - 25 8 ## Obj-C/Swift specific 26 9 *.hmap 27 10 ··· 66 49 67 50 Carthage/Build/ 68 51 69 - # Accio dependency management 70 - Dependencies/ 71 - .accio/ 72 - 73 52 # fastlane 74 53 # 75 54 # It is recommended to not store the screenshots in the git repo. ··· 81 60 fastlane/Preview.html 82 61 fastlane/screenshots/**/*.png 83 62 fastlane/test_output 84 - 85 - # Code Injection 86 - # 87 - # After new code Injection tools there's a generated folder /iOSInjectionProject 88 - # https://github.com/johnno1962/injectionforxcode 89 - 90 - iOSInjectionProject/
+5
options/gitignore/TeX
··· 39 39 *.synctex.gz 40 40 *.synctex.gz(busy) 41 41 *.pdfsync 42 + *.rubbercache 43 + rubber.cache 42 44 43 45 ## Build tool directories for auxiliary files 44 46 # latexrun ··· 137 139 *.lg 138 140 *.trc 139 141 *.xref 142 + 143 + # hypdoc 144 + *.hd 140 145 141 146 # hyperref 142 147 *.brf
+6
options/gitignore/Terraform
··· 23 23 *_override.tf 24 24 *_override.tf.json 25 25 26 + # Ignore transient lock info files created by terraform apply 27 + .terraform.tfstate.lock.info 28 + 26 29 # Include override files you do wish to add to version control using negated pattern 27 30 # !example_override.tf 28 31 ··· 32 35 # Ignore CLI configuration files 33 36 .terraformrc 34 37 terraform.rc 38 + 39 + # Ignore hcl file 40 + .terraform.lock.hcl
+11
options/gitignore/UiPath
··· 1 + # gitignore template for RPA development using UiPath Studio 2 + # website: https://www.uipath.com/product/studio 3 + # 4 + # Recommended: n/a 5 + 6 + # Ignore folders that could cause issues if accidentally tracked 7 + **/.local/** 8 + **/.settings/** 9 + **/.objects/** 10 + **/.tmh/** 11 + **/*.log
+2 -2
options/gitignore/UnrealEngine
··· 47 47 48 48 # Binary Files 49 49 Binaries/* 50 - Plugins/*/Binaries/* 50 + Plugins/**/Binaries/* 51 51 52 52 # Builds 53 53 Build/* ··· 68 68 69 69 # Compiled source files for the engine to use 70 70 Intermediate/* 71 - Plugins/*/Intermediate/* 71 + Plugins/**/Intermediate/* 72 72 73 73 # Cache files for the editor to use 74 74 DerivedDataCache/*
-4
options/gitignore/Xcode
··· 1 1 ## User settings 2 2 xcuserdata/ 3 - 4 - ## Xcode 8 and earlier 5 - *.xcscmblueprint 6 - *.xccheckout