https://github.com/benjaminmichaelis/jobsherpa
A simple site for keeping track of the details of your job search
https://github.com/benjaminmichaelis/jobsherpa
Last synced: about 2 months ago
JSON representation
A simple site for keeping track of the details of your job search
- Host: GitHub
- URL: https://github.com/benjaminmichaelis/jobsherpa
- Owner: BenjaminMichaelis
- License: mit
- Created: 2023-03-06T18:38:20.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-07T15:04:03.000Z (over 1 year ago)
- Last Synced: 2025-01-20T11:26:15.108Z (4 months ago)
- Language: Vue
- Size: 952 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# JobSherpa
A simple site for keeping track of the details of your job search
## Installation and Startup Steps
1. Install [Node.js](https://nodejs.org/en/download/) version 16.0 or higher
2. Clone the project locally
3. Navigate to the project locally, and open up your terminal and run `npm install`
4. To launch the application, run `npm run dev` (Compiles and hot-reloads for development)## Development
To run frontend development:
- Navigate to Web Project (`cd JobSherpa.Web`)
- Run frontend with `npm run dev` commandTo run backend server:
- Navigate to Data Project (`cd JobSherpa.Data`)
- Run server with `npm run start` commandThe server should then be available locally at
## Production
To compile and minifies for production:
`npm run build`## Lints and fixes files
To check if files need linting:
`npm run lint`
To try and fix files:
`npm run lint:fix`