diff options
| author | Star Rauchenberger <fefferburbia@gmail.com> | 2023-11-30 13:29:08 -0500 |
|---|---|---|
| committer | Star Rauchenberger <fefferburbia@gmail.com> | 2023-11-30 13:29:08 -0500 |
| commit | 0929719a845897cc8567cf972e07a69a71f0fa6f (patch) | |
| tree | 2b6f69c1d906abb6e0abf8a0f1d51725bc78087d /.gitignore | |
| parent | 01c1947537e4e23ded0c16812a7cd9d49ad88356 (diff) | |
| download | wittle-0929719a845897cc8567cf972e07a69a71f0fa6f.tar.gz wittle-0929719a845897cc8567cf972e07a69a71f0fa6f.tar.bz2 wittle-0929719a845897cc8567cf972e07a69a71f0fa6f.zip | |
Migrate to a full rails app
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 46 |
1 files changed, 36 insertions, 10 deletions
| diff --git a/.gitignore b/.gitignore index 162e77e..b03f305 100644 --- a/.gitignore +++ b/.gitignore | |||
| @@ -1,14 +1,40 @@ | |||
| 1 | # See https://help.github.com/articles/ignoring-files for more about ignoring files. | ||
| 2 | # | ||
| 3 | # If you find yourself ignoring temporary files generated by your text editor | ||
| 4 | # or operating system, you probably want to add a global ignore instead: | ||
| 5 | # git config --global core.excludesfile '~/.gitignore_global' | ||
| 6 | |||
| 7 | # Ignore bundler config. | ||
| 8 | /.bundle | ||
| 9 | |||
| 10 | # Ignore all environment files (except templates). | ||
| 11 | /.env* | ||
| 12 | !/.env*.erb | ||
| 13 | |||
| 14 | # Ignore all logfiles and tempfiles. | ||
| 15 | /log/* | ||
| 16 | /tmp/* | ||
| 17 | !/log/.keep | ||
| 18 | !/tmp/.keep | ||
| 19 | |||
| 20 | # Ignore pidfiles, but keep the directory. | ||
| 21 | /tmp/pids/* | ||
| 22 | !/tmp/pids/ | ||
| 23 | !/tmp/pids/.keep | ||
| 24 | |||
| 25 | # Ignore storage (uploaded files in development and any SQLite databases). | ||
| 26 | /storage/* | ||
| 27 | !/storage/.keep | ||
| 28 | /tmp/storage/* | ||
| 29 | !/tmp/storage/ | ||
| 30 | !/tmp/storage/.keep | ||
| 31 | |||
| 32 | /public/assets | ||
| 33 | |||
| 34 | # Ignore master key for decrypting credentials and more. | ||
| 35 | /config/master.key | ||
| 36 | |||
| 1 | ext/wittle_generator/build | 37 | ext/wittle_generator/build |
| 2 | *.o | 38 | *.o |
| 3 | mkmf.log | 39 | mkmf.log |
| 4 | wittle_generator.bundle | 40 | wittle_generator.bundle |
| 5 | /.bundle/ | ||
| 6 | /doc/ | ||
| 7 | /log/*.log | ||
| 8 | /pkg/ | ||
| 9 | /tmp/ | ||
| 10 | /test/dummy/db/*.sqlite3 | ||
| 11 | /test/dummy/db/*.sqlite3-* | ||
| 12 | /test/dummy/log/*.log | ||
| 13 | /test/dummy/storage/ | ||
| 14 | /test/dummy/tmp/ | ||
