Skip to content
This repository has been archived by the owner on Feb 16, 2023. It is now read-only.

Known problems

Marc Bollmann edited this page Jan 27, 2021 · 17 revisions

This page is a collection of typical issues which can occur when developing.

Misc

File '.../node_modules/dotenv/types' not found

Solution: Restart VSCode

"LF will be converted to CRLF"

Als Line-Endings wird LF genutzt. Dafür ist die .gitattributes zuständig. Falls beim committen Fehler der Art "LF will be converted to CRLF" auftreten muss "git config --global core.autocrlf false" ausgeführt werden.


Frontend


Backend

Execution PowerShellScript (nest cli) not possible

nest : Die Datei "C:\Users\m4rc9\AppData\Roaming\npm\nest.ps1" kann nicht geladen werden, da die Ausführung von Skripts auf diesem System deaktiviert ist. Weitere Informationen finden Sie unter "about_Execution_Policies" 
(https:/go.microsoft.com/fwlink/?LinkID=135170).
In Zeile:1 Zeichen:1
+ nest help
+ ~~~~
    + CategoryInfo          : Sicherheitsfehler: (:) [], PSSecurityException
    + FullyQualifiedErrorId : UnauthorizedAccess`

Solution in PowerShell:

  • Check your ExecutionPolicy with Get-ExecutionPolicy should be 'restricted'

Start PowerShell as Admin and

  • Set-ExecutionPolicy to Remote Signed with Set-ExecutionPolicy RemoteSigned