Solucionado (ver solução)
Solucionado
(ver solução)
1
resposta

Erro ao executar o db.son

Caros, uma vez descompactado o json-server-master e executar o comando abaixo, o seguinte erro é apresentado.

PS E:\Vander2021\Cursos\VUEjs\vue-test-master> json-server --watch db.json
json-server : File C:\Users\VanderBC\AppData\Roaming\npm\json-server.ps1 cannot be loaded because running scripts is disabled on this system. For more 
At line:1 char:1
+ json-server --watch db.json
+ ~~~~~~~~~~~
    + CategoryInfo          : SecurityError: (:) [], PSSecurityException
    + FullyQualifiedErrorId : UnauthorizedAccess
1 resposta
solução!

Caros, depois de tentativas, acabei dando um search no google sobre o erro acima e encontrei a solução. No meu caso, uso o Windows 10. Entre no PowerShell do Windows como administrador e rode o seguinte comando (sem os asteriscos) para liberar acesso à execução de script no SO. Set-ExecutionPolicy Unrestricted

PS C:\WINDOWS\system32> Set-ExecutionPolicy Unrestricted

Resultado do comando: Execution Policy Change The execution policy helps protect you from scripts that you do not trust. Changing the execution policy might expose you to the security risks described in the about_Execution_Policies help topic at https:/go.microsoft.com/fwlink/?LinkID=135170. Do you want to change the execution policy? [Y] Yes [A] Yes to All [N] No [L] No to All [S] Suspend [?] Help (default is "N"): y

Executado esse comando, conseguir rodar o server. PS E:\Vander2021\Cursos\VUEjs\vue-test-master> json-server --watch db.json {^_^}/ hi! Loading db.json Done Resources http://localhost:3000/leiloes http://localhost:3000/lances

Flw!