diff options
author | marvin-borner@live.com | 2018-04-22 16:54:30 +0200 |
---|---|---|
committer | marvin-borner@live.com | 2018-04-22 16:54:30 +0200 |
commit | 2fdb14bb97e4f2dbf36b632ec891772bebe41b7d (patch) | |
tree | 381a7875540bb210cb86954870c14e8b6465c3ff /main/.gitignore | |
parent | aad9b3116ce1158bc43c41b1eb6c78fc42d6c038 (diff) | |
parent | 9786120e568278ae8e3af33fc5d86dcc0798f258 (diff) |
Merge branch 'master' of github.com:marvinborner/SocialNetwork
Diffstat (limited to 'main/.gitignore')
-rw-r--r-- | main/.gitignore | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/main/.gitignore b/main/.gitignore new file mode 100644 index 0000000..ee30f1e --- /dev/null +++ b/main/.gitignore @@ -0,0 +1,62 @@ +# Ignores my text editor metadata +*.komodoproject + +# Ignores Mac metadata. You can configure this globally if you use a Mac: http://islegend.com/development/setting-global-gitignore-mac-windows/ +.DS_Store + +# Ignore developer resources +_meta/* + +# Ignore personal config files (dev) +app/.env + +# Ignore composer-generated files +composer.lock +composer.phar + +# Ignore log, cache, and sessions directories +app/cache/* +app/logs/* +app/sessions/* + +# Unignore log, cache, and sessions .gitkeeps +!app/cache/.gitkeep +!app/logs/.gitkeep +!app/sessions/.gitkeep + +# Ignore bower vendor assets +/app/sprinkles/*/assets/vendor/ + +# Ignore sprinkles.json config file +app/sprinkles.json + +# Ignore sample site sprinkle +app/sprinkles/site-dev + +# Ignore Composer vendor +app/vendor/* + +# Ignore node modules +build/node_modules/* + +# Ignore generated bundle schema files +build/bundle.config.json +build/bundle.result.json + +# Ignore temporary build assets +build/temp + +# Ignore npm-debug.log +build/npm-debug.log + +# Ignore compiled assets +public/assets/* + +# Ignore minified assets (v0.3.x) +public/js/min/* +public/css/min/* + +# Ignore personal config files (v0.3.x) +app/config-userfrosting.php + +app/database/userfrosting.db |