srbhr / Resume-Matcher

Resume Matcher is an open source, free tool to improve your resume. It works by using language models to compare and rank resumes with job descriptions.
https://www.resumematcher.fyi/
Apache License 2.0
4.92k stars 2.11k forks source link

fix: webapp - wsl shell source not found #155

Closed Sayvai closed 1 year ago

Sayvai commented 1 year ago

fix: webapp - WSL Ubuntu shell source not found

A bug was found (see GitHub Issue #153), where when a user attempting to run the npm run dev or npm run fastapi-dev commands from within a (Windows) WSL Ubunutu Shell window, encounters the following error, which prevents the backend FastAPI server from running:

sh: 1: source: not found

Given it appears that source is a command built-in and runnable on Bash and ZSH terminal environments, it is not available to use within the WSL Ubuntu shell by default.

To fix this, a more universal substitute can be used in place of source, which is the period ., which performs the same function in Bash, ZSH, and WSL Ubunutu terminal / shell environments.

This commit also includes minor webapp/README.md updates to reformat lists to numbered lists for both the Setup and Debugging sections for improved clarity.

Related Issue

Description

Type

Proposed Changes

Screenshots / Code Snippets (if applicable)

N/A

How to Test

N/A

Checklist

Additional Information

N/A