When a simulation is submitted, the simulation template is staged (recursively copied and mustache files rendered) to a new directory underneath the user's dataroot specified by the `RAILS_DATAROOT` environment variable. In development, a `.env.development` file must specify the location. This is what our .env.development file commonly looks like:
1. The files in the dataroot are [automatically made URL accessible](https://github.com/AweSim-OSC/awesim_rails#filesrackapp).
2. To build a URL to these files, see [Resolving the URL to a results file of a simulation](Resolving-the-url-to-a-results-file-of-a-simulation)
3. To read the file's contents, see [Resolving the file path to a results file of a simulation](Resolving-the-file-path-to-a-results-file-of-a-simulation)
4. Don't ever copy results back to `app/assets`! When the app is shared, this will be read only to the user and will not work. The purpose of the dataroot is to specify the location of the user's data that the app can manage.