diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..31eeee0b --- /dev/null +++ b/.gitattributes @@ -0,0 +1,7 @@ +# See https://git-scm.com/docs/gitattributes for more about git attribute files. + +# Mark the database schema as having been generated. +db/schema.rb linguist-generated + +# Mark any vendored files as having been vendored. +vendor/* linguist-vendored diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..686a0279 --- /dev/null +++ b/.gitignore @@ -0,0 +1,31 @@ +# See https://help.github.com/articles/ignoring-files for more about ignoring files. +# if you find yourself ignoring temporary files generated by your text editor +# or operating system, you probably want to add a global ignore instead: +# git config --global core.excludesfile '~/.gitignore_global' + +# Ignore bundler config. +/.bundle +.ruby-version +.vscode/ + +# Ignore all logfiles and tempfiles. +/log/* +/tmp/* +!/log/.keep +!/tmp/.keep + +# Ignore pidfiles, but keep the directory. +/tmp/pids/* +!/tmp/pids/ +!/tmp/pids/.keep + +# Ignore uploaded files in development. +/storage/* +!/storage/.keep +/tmp/storage/* +!/tmp/storage/ +!/tmp/storage/.keep + +# Ignore master key for decrypting credentials and more. +/config/master.key +node_modules diff --git a/frontend/src/components/Authentication/NewAccountForm.js b/frontend/src/components/Authentication/NewAccountForm.js index e65f2f3f..6f2c5ab1 100644 --- a/frontend/src/components/Authentication/NewAccountForm.js +++ b/frontend/src/components/Authentication/NewAccountForm.js @@ -157,6 +157,13 @@ const NewAccountForm = () => { > Submit +