Copying app assets to site assets

This is more of a Frappe question but,
Is there a command that would automatically copy my apps assets to /sites/assets so that I can use it directly?

Something similar to Symfony’s assets:install

@wnoveno,

Just add your CSS, js files into app’s public directory, then your app’s assets will be available in /site/assets directory.

Thanks,
Makarand Bauskar

Just remember to issue a bench build before…

Got it working for css and js, but how about image assets?

@wnoveno,

Image assests will also be available in the /sites/assests directory.

Thanks,
Makarand

are the images supposed to be copied after bench build? Because It’s not copying when I run bench build

Or do I have to reinstall the app that I’ve created, and that would trigger the copy?

Thanks

@wnoveno,

public assets are not copied to /site/assets directory, instead a soft link will be created so your app’s assets will be available in /site/assets/your_app directory

So, if you add the images in your app’s public directory it will be made available in /site/assets/your_app directory as well.

Thanks, Makarand

1 Like

Got it.
I see the problem now, I’m using vagrant and the symbolic links were lost in the host machine when I ran scp.

This topic was automatically closed after 24 hours. New replies are no longer allowed.