Skip to content

Commit c9db01d

Browse files
committed
use filesystem storage
1 parent c69106a commit c9db01d

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,4 @@
1616
# Ignore all logfiles and tempfiles.
1717
/log/*.log
1818
/tmp
19+
/public/system

config/environments/development.rb

+1-3
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@
3636
# config.action_view.raise_on_missing_translations = true
3737
config.action_mailer.default_url_options = { host: 'localhost:3000' }
3838
config.paperclip_defaults = {
39-
storage: :s3,
40-
s3_credentials: "#{Rails.root}/config/s3.yml",
41-
bucket: 'songsync'
39+
storage: :filesystem
4240
}
4341
end

db/schema.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@
5252
t.datetime "last_sign_in_at"
5353
t.string "current_sign_in_ip"
5454
t.string "last_sign_in_ip"
55-
t.string "api_key"
5655
t.string "provider"
5756
t.string "uid"
57+
t.string "api_key"
5858
t.integer "current_song_id"
5959
t.integer "current_playlist_id"
6060
t.float "current_timestamp"

0 commit comments

Comments
 (0)