I am building an application that should allow user to upload their themes to display the data in a custom way. Each theme should include all the necessary assets such as html template (using Liquid), css files, javascripts and images. The result should be very similar to what Shopify allow to do to their customers.
I am struggling to find the best way for the users to submit their themes and for the application to serve them back. Specifically, what are the best practices:
- To serve them back to the visitors. While serving the html/liquid files seems to be easy enough using a custom store, I am confused on how to reference and serve 1) images required by the themes, 2) css files required by the themes, 3) images required by the css file
- To consequentely store the different asset types (e.g., database vs uploaded file and folder structure for the uploaded files)
- Possibility for the users to edit the uploaded templates through a web interface
Thanks in advance.