So, I found an easier solution to this that worked for me. I am using Windows OS and WebStorm.
First, using my Windows File Explorer, I moved all my files into the directory/folder I wanted and titled it the App Name I preferred by a simple Cut/Copy & Paste.
Next, I opened my IDE (WebStorm) and chose to Open a Project and selected the new directory/folder. In my top level folder, I opened the terminal and entered:
npx @vue/cli create --merge <Name of your directory/folder aka App Name>
and then ENTER.
If the directory name already exists, it merged the CLI into this one. If not, it creates a new directory with the new App Name.
Last, follow remaining install prompts to choose your version.
To initiate the development server, choose your sub-directory or folder (under your newly merged app), open the terminal, cd to the folder path(if needed), enter the command: npm run serve and ENTER. This should start and compile to the development server and provide the local and network addresses for your app.
My file structure looked like this:
- Main Root: Vue CLI Apps - Under this root folder I ran the npx @vue/cli create --merge <Name of your directory/folder aka App Name> command.
- 1.1. Folder appname
- 1.1.1 .idea (WebStorm)
- 1.1.1.1 Project Set Name
- 1.1.1.1.1 project 1 - Title - Under this subfolder is where I ran the npm run serve command.
Hope this saves a headache.