diff options
author | Kirill Rogovoy <[email protected]> | 2021-07-20 21:24:52 +0300 |
---|---|---|
committer | Kirill Rogovoy <[email protected]> | 2021-07-20 21:24:52 +0300 |
commit | 5f4611d65e40eae3ca6191a15f68d69ea5a1c4cb (patch) | |
tree | 273dfc086444533d86d580961c92ba8d14781a67 /.gitignore | |
parent | f0bf4e7afdcd8b02a62be45ab3e7d047ed865a79 (diff) |
WIP
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 103 |
1 files changed, 26 insertions, 77 deletions
@@ -1,85 +1,34 @@ -# OSX -# -.DS_Store - -# Xcode -# -build/ -*.pbxuser -!default.pbxuser -*.mode1v3 -!default.mode1v3 -*.mode2v3 -!default.mode2v3 -*.perspectivev3 -!default.perspectivev3 -xcuserdata -*.xccheckout -*.moved-aside -DerivedData -*.hmap -*.ipa -*.xcuserstate - -# Android/IntelliJ -# -build/ -.idea -.gradle -local.properties -*.iml - -# node.js -# -node_modules/ -npm-debug.log -yarn-error.log +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. -# BUCK -buck-out/ -\.buckd/ -*.keystore -!debug.keystore +# dependencies +/node_modules +/.pnp +.pnp.js -# fastlane -# -# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the -# screenshots whenever they are needed. -# For more information about the recommended setup visit: -# https://docs.fastlane.tools/best-practices/source-control/ +# testing +/coverage -*/fastlane/report.xml -*/fastlane/Preview.html -*/fastlane/screenshots +# next.js +/.next/ +/out/ -# Bundle artifact -*.jsbundle +# production +/build -# CocoaPods -/ios/Pods/ - -# Ignite-specific items below -# You can safely replace everything above this comment with whatever is -# in the default .gitignore generated by React-Native CLI - -# VS Code -.vscode - -# Expo -.expo/* -bin/Exponent.app +# misc +.DS_Store +*.pem -npm-debug.* -*.jks -*.p8 -*.p12 -*.key -*.mobileprovision -*.orig.* -#web-build/ +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* -# Configurations -app/config/env.*.js -!env.js +# local env files +.env.local +.env.development.local +.env.test.local +.env.production.local -.log/* +# vercel +.vercel |