Running out of disk space

Hey! The activity log is telling me that my project is running out of space but I have not changed anything in it recently so I do not understand why all of a sudden it is telling me this! What makes me more confused is that even after deleting some files it keeps telling the same thing (used 126.1 out of 128 MB). How is this possible if I have deleted some files? Is there a way for me to figure out what is taking up that space?

Jump to the console in advance options and follow these recommendations:

  • Check disk space using $ df
  • Run git gc and git prune, this will help cleanup files and remove unreachable objects
  • If you’re not worried about git history, remove the .git folder using $ rm -rf .git
  • Remove unused dependencies from your package.json
  • Review your dependencies in the node_modules folder.

Recheck with $ df, the partition that is limited is the one under /app.

Hope this helps!

7 Likes

Is there a way to see how much space each file takes? Thanks!

You can run this command to list and sort all the files in your project by filesize

$ find . -type f  -exec du -h {} + | sort -r -h
3 Likes

Dude, thank you SO MUCH! Legend!

You can also run ncdu ., which takes a while to load, but gives you an overview of which directories are taking up the most space.

1 Like

Is there a way to re-enable the default git checkpointing after deleting the .git folder?

Oh… it seems if I wait a bit .git magically returns, never mind!

1 Like

Ok so my disk is at 95% and it wont let me save any new changes in my code i would like to try using git gc or git prune but im worried it might mess something up any advice?

Running those commands should not mess up anything, but if your project space is too full, you will have to given some space to be able to run the commands!

1 Like

my glitch project, retrojs-official has been using affully a lot of space quickly , from memory, cpu, and disk, can someone please explain this?

1 Like

If you run enable-pnpm in the console that should fix you Disk Space issue (hopefully). However, for your memory and CPU usage, that issue is either caused by your code or some libraries/modules.

@Romoslayer were you able to address your disk space issue?

no i tried git prune and gc and i still have 95% disk space being used


Virus-free. www.avast.com

Hey @Romoslayer if you provide your project name someone can take a look.

The project name is romobot and if someone could help that would be great thanks.

Hey @Romoslayer, you’re basically out of disk space in that project. When I run du -hd1 in the project’s console I see that most of that space is taken up with your .git folder, so following the steps in Glitch full disk error will likely be helpful.

I’ve granted your project additional space for 24 hours to give you the free space you’ll need to work through those steps. Let us know if you run into other problems.

Great thanks i cleared my disk space and its at 2 thanks for the help

1 Like

Hello, my project have disk space on 95% and i cant get it down
and i aiready run this commands from console
rm -rf .git git prune and git gc
and still stuck on 95%, from this i cant edit my project

it may cause if you use npm to install modules try to uninstall all npm modules and install node modules using pnpm ex - pnpm i express

i will try this, thanks

i getting this error
image

try to delete node_modules by typing

rm -rf node_modules

after that try

pnpm i

i getting this now

check your files you have uploaded something huge file

i have this files

shrinkwrap.yaml (73k)
package-lock.json (95k)
bots.json (150k)

other files is 1k

can you add me to your project so i can help you out

Run cd ~ && du -hs $(ls -A) in your terminal. Copy and paste the results.

35K api
5.0K .bash_history
5.0K bot
149K bots.json
1.6M .cache
116K commands
5.0K .config
3.0K config.js
1.0K .data
1.0K .env
32K events
1.0K .gitignore
14K .glitch-assets
8.0K json.sqlite
1.0K lib
2.0K LICENSE.md
0 .node-gyp
0 node_modules
1.0K .node_repl_history
30M .npm
1.0K .npm-global
1.0K .npmrc
20K old
2.0K package.json
96K package-lock.json
0 pnpm-debug.log
151M .pnpm-store
1.0K .prettierrc
23K public
1.0K README.md
7.0K routes
26K server.js
74K shrinkwrap.yaml
11K test
254K views
1.0K watch.json

correct now, i dont trust you, but if i will see is the only way, i will talk with the second owner of the project if we can add you

Hm. As you might be able to tell, the two largest folders in your directory are .npm and .pnpm-store which are reported to be 30 MB and 151 MB in size, respectively. Given the nature of your issue being somewhat elementary, I assume you did not architecture your application in a manner outside of the ordinary that may have caused the folders to become large.

In any manner, my suggestion is to remove both of them. Due to the way projects run on Glitch, there is no need for either of them based on my knowledge of what they likely contain. If you would like, I can go into detail to explain.

In order to remove both of those folders, simply run cd ~ && rm -rf .npm .pnpm-store. It should immediately result in a significant amount of space being freed up.

I apologize if this post is confusing or jumbled. I’m having difficulty writing my thoughts out in a coherent manner. Hopefully my proofreading helped.

thanks you so much, it now go down to 2% :heart:

1 Like

it dosent work ,before it was 80% and now it become 79%

Try to use $rm -rf .git
@shivamthakkar

why was i pinged?

@Jonyk56 Reason is that you have replied in this thread.

Also you might have the notification on “Tracking”.

makes sense

Can I also get your help I am also above 95% please see my project also

try rm -rf .cache try. I have tried and succeeded

1 Like

this works. ty. I went from 95% disk space, all the way to 1%. Thank you.

1 Like