We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2b6244 commit be8e200Copy full SHA for be8e200
utils/local.js
@@ -112,15 +112,15 @@ async function run_back(
112
command,
113
args = {
114
project_folder_path,
115
- upload_folder_path: path.join(project_folder_path, "uploads"),
116
},
117
) {
118
return new Promise(async (resolve, reject) => {
+ const upload_folder_path = path.join(project_folder_path, "uploads")
119
const port = await get_available_port()
120
const back_args = [
121
"--port " + port,
122
"--data_folder_path " + args.project_folder_path,
123
- "--upload_folder_path " + args.upload_folder_path,
+ "--upload_folder_path " + upload_folder_path,
124
"--allowed_origin http://localhost:*",
125
"--timeout " + 0,
126
]
0 commit comments