Rename files
From time to time you may need to rename files within your project.
Vely source code files can be
request handlers (with file names that do not start with an underscore) and
non_request files (with names that start with an underscore).
A Vely
non_request file can be renamed freely. Whatever it's name is, it will be picked up automatically and compiled as a part of the project - so you don't have to worry about file names.
A Vely
request file can be renamed as well, and whatever it's name is, it will also be picked up and compiled as a part of the project. You must however, change the name of the handler function within such file to match the name of the file. For example a file "process_request.vely" must have a handler function implemented in it with the signature of "void process_request()". If you rename this file to "my_request.vely" then you must change the handler function to have a signature of "void my_request()".
See also
General (
deploying_application how_vely_works quality_control rename_files SELinux vely vely_architecture vely_removal vf vv why_Vely )
SEE ALL (
documentation)