Skip to content

keithhetrick/musicNotes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 

Repository files navigation

musicNotes

A simple portal for Garnish employees to keep track of their current tasks and projects. This is a full-stack application built with React, Redux, Node.js, Express, and MongoDB. It has a fully functional Auth/login& reg system manually built from the ground up. The application is currently hosted on AWS EC2 and due to permissions (from the Auth functionality), the full application is only accessible to Garnish employees - only the login page is publicly accessible.

musicNotes built with:

Screen Shot 2023-02-04 at 10 57 27 PM

Screen Shot 2023-02-04 at 10 58 24 PM

Screen Shot 2023-02-04 at 10 59 28 PMScreen Shot 2023-02-04 at 11 07 50 PM

Screen Shot 2023-02-04 at 11 04 46 PM

Screen Shot 2023-02-04 at 11 10 36 PMScreen Shot 2023-02-04 at 11 11 20 PM

Installation

  1. Clone the repo
git clone <repo_url>
  1. Install NPM packages on both the client and server directories
npm install
  1. Create a .env file in the server directory and add the following:
PORT=8000
DATABASE_URI=<your_mongoDB_uri> => can be created via MongoDB Atlas
NODE_ENV=<development> || <production>
ACCESS_TOKEN_SECRET=<your_access_token_secret> => can be generated inside Node shell via the following command: require('crypto').randomBytes(64).toString('hex')
REFRESH_TOKEN_SECRET=<your_refresh_token_secret> => use the same command as above, and paste the new result into the .env file
  1. Run the server
nodemon server.js
  1. Run the client
npm run start

Usage

  1. Login with your credentials
  2. Create a new project or task
  3. Assign a project or task to yourself or another employee
  4. View your current projects and tasks
  5. Managers - Update your current projects and tasks
  6. Managers - Delete your current projects and tasks
  7. Admin - Add a new employee, or update an existing employee's information
  8. Admin - Delete an employee

About

A Full-stack app for Garnish employees to keep track of their current tasks and projects.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published