💎Rails tip: Clear logs and temp files

Sebastien Auriault
May 28, 2022
Did you know you could speed up your dev environment a bit by clearing up logs and temporary files? Especially when it's been a long time since it hasn't been cleared.

rails tmp:clear
rails log:clear

# shortcut for both at the same time
rails tmp:clear log:clear

# keep in mind that this is irreversible so do this
# only if you don't mind losing your logs or tmp files