Project Issue-Tracker Live App
This app will help you track the projects and there ongoing issues. Open live app
Following are the features of this app:
- Shows the list of projects in progress.
- Show a list of projects.
- Button to create a new Project.
- While creating project it accepts 3 parameters.
- Name
- Description
- Author
- When clicked on any project you will be redirected to the project details page.
- Project details page have following features:
- A button to create an issue.
- Filter by multiple labels i.e. you will be able to filter by 2 or more labels at the same time.
- Filter by author.
- Search by title.
- Search by description.
- Creating a issue will accept following parameters:
- Title
- Description
- Labels : Multiple labels can be added to a project, if a project has a label already it will be shown in dropdown you will user type the label in
- Author
- Node should be installed on your Device
- Mongo DB should be installed
- Download the zip file for this project from the repository or Click here to download !
- Extract the file open in VS Code.
- Run
npm i
this will install all dependencies. - Run
nodemon index.js
(if this command doesn't work, then nodemon is not installed globally in your system, please runnpm i nodemon
before running this command.) - The app will be live on port 8000, you can access it using url
http://localhost:8000
in your browser.
Note : To run in local environment and link to your local mongo data base just uncomment the line 8 and comment line 3 and 9 in mongoose.js
as the project is linked to cloud data base.