We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The backend service currently lacks a proper start script in package.json and the local development setup needs better documentation.
package.json
No start script in backend's package.json
start
Running npm start in backend directory results in error:
npm start
Local development setup instructions are unclear
Add start scripts to backend/package.json:
"scripts": { "start": "babel-node src/server.js", "dev": "nodemon --exec babel-node src/server.js" }
Add required dev dependencies:
"devDependencies": { "@babel/node": "^7.x.x", "nodemon": "^2.x.x" }
Update README.md with:
This will improve the developer experience and make it easier for new contributors to get started with the project.
The text was updated successfully, but these errors were encountered:
@Monokaix Could you please assign me this issue? I'd love to start contributing to it.
Sorry, something went wrong.
Welcome! /assign @aryasoni98
aryasoni98
No branches or pull requests
Issue Description
The backend service currently lacks a proper start script in
package.json
and the local development setup needs better documentation.Current Behavior
No
start
script in backend'spackage.json
Running
npm start
in backend directory results in error:Local development setup instructions are unclear
Proposed Changes
Add start scripts to backend/package.json:
Add required dev dependencies:
Update README.md with:
Environment
Additional Context
This will improve the developer experience and make it easier for new contributors to get started with the project.
Checklist
The text was updated successfully, but these errors were encountered: