Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jodaz/issue-tracker
Issue tracker MERN app
https://github.com/jodaz/issue-tracker
freecodecamp-project issue-tracker mern-stack
Last synced: about 1 month ago
JSON representation
Issue tracker MERN app
- Host: GitHub
- URL: https://github.com/jodaz/issue-tracker
- Owner: jodaz
- License: mit
- Created: 2019-03-29T03:54:50.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-30T17:22:51.000Z (about 2 years ago)
- Last Synced: 2024-11-13T18:25:25.872Z (3 months ago)
- Topics: freecodecamp-project, issue-tracker, mern-stack
- Language: JavaScript
- Homepage:
- Size: 1.03 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Issue Tracker
## Getting started
### Prerequisites
You will need to create a `keys_dev.js` file in the config folder as:
```
module.exports = {
mongoURI: 'YOUR_OWN_MONGO_URI'
}
```### Installation
```
# Clone the repository
git clone https://github.com/jesuodz/issue-tracker.git# Cd and install dependencies for server
cd issue-tracker && npm install# Install dependencies for client
npm run client-install# Run both client and server
npm run dev# Run server only
npm run server# Run client only
npm run client
```By default, server runs on `http://localhost:4000` and client runs on `http://localhost:3000`
## Author
Jesús Ordosgoitty ( [jesuodz](https://jesuodz.github.io) | [Twitter](https://twitter.com/jesuodz) )## Acknowledgments
* Inspired by [DevConnector](https://github.com/bradtraversy/devconnector)