Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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)