Skip to content
This repository was archived by the owner on Jul 14, 2024. It is now read-only.

Commit 0a8c6bc

Browse files
committedApr 18, 2023
conf(Set up): Initial Dependencies
Add initial dependencies to get the Rails app up and running. Rails 7 Boostrap Vite (https://www.bootrails.com/blog/vitejs-rails-a-wonderful-combination/) RSpec FactoryBot MySQL
0 parents  commit 0a8c6bc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+1903
-0
lines changed
 

‎.gitattributes

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# See https://git-scm.com/docs/gitattributes for more about git attribute files.
2+
3+
# Mark the database schema as having been generated.
4+
db/schema.rb linguist-generated
5+
6+
# Mark any vendored files as having been vendored.
7+
vendor/* linguist-vendored

‎.gitignore

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
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 logfiles and tempfiles.
11+
/log/*
12+
/tmp/*
13+
!/log/.keep
14+
!/tmp/.keep
15+
16+
# Ignore pidfiles, but keep the directory.
17+
/tmp/pids/*
18+
!/tmp/pids/
19+
!/tmp/pids/.keep
20+
21+
22+
/public/assets
23+
24+
# Ignore master key for decrypting credentials and more.
25+
/config/master.key
26+
27+
/app/assets/builds/*
28+
!/app/assets/builds/.keep
29+
30+
/node_modules
31+
32+
# Vite Ruby
33+
/public/vite*
34+
node_modules
35+
# Vite uses dotenv and suggests to ignore local-only env files. See
36+
# https://vitejs.dev/guide/env-and-mode.html#env-files
37+
*.local
38+

0 commit comments

Comments
 (0)
This repository has been archived.