initial commit
This commit is contained in:
5 files changed
+1276
-1
No files matched your search
@@ -0,0 +1,2 @@
|
|||||||
|
mongoURI='mongodb://localhost:27017/'
|
||||||
|
database='nameOfDatabase'
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
# Environment variables
|
||||||
|
.env
|
||||||
|
|
||||||
|
# Node modules
|
||||||
|
node_modules/
|
||||||
@@ -1 +1,76 @@
|
|||||||
# 2800-202510-BBY14
|
# Retirement Calculator
|
||||||
|
## 2800-202510-BBY14
|
||||||
|
|
||||||
|
## Overview
|
||||||
|
|
||||||
|
Retirement Calculator - The goal of the application is to help users manage and track their financial progress in a way that reflects real life. Instead of just acting as a calculator, the app functions as a dynamic tracker. It shows the user a percentage of how much of their goal has been achieved and compares their actual performance to their planned targets.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Features
|
||||||
|
|
||||||
|
- Do calculator stuff
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Technologies Used
|
||||||
|
|
||||||
|
Example:
|
||||||
|
- **Frontend**: HTML, CSS, JavaScript
|
||||||
|
- **Backend**: Express.js
|
||||||
|
- **Database**: MongoDB
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
***Please check back later.***
|
||||||
|
|
||||||
|
1. ...
|
||||||
|
2. ...
|
||||||
|
3. ...
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Project Structure
|
||||||
|
|
||||||
|
```
|
||||||
|
retirementCalculator/
|
||||||
|
├── src/
|
||||||
|
| ├── app.js
|
||||||
|
│ ├── views/
|
||||||
|
│ ├── public/
|
||||||
|
| | ├── css/
|
||||||
|
| | ├── icons/
|
||||||
|
| | ├── images/
|
||||||
|
| | └── scripts/
|
||||||
|
│ └── util/
|
||||||
|
├── .env.example
|
||||||
|
├── .gitignore
|
||||||
|
├── LICENSE
|
||||||
|
├── package-lock.json
|
||||||
|
├── package.json
|
||||||
|
└── README.md
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Contributors
|
||||||
|
- **[Braeden Sowinski](https://github.com/SowinskiBraeden)** - BCIT CST Student with a passion for back-end development.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Limitations and Future Work
|
||||||
|
### Limitations
|
||||||
|
|
||||||
|
- None
|
||||||
|
|
||||||
|
### Future Work
|
||||||
|
|
||||||
|
- All work
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
[MIT LICENSE](/LICENSE)
|
||||||
Generated
+1167
File diff suppressed because it is too large.
Load diff
@@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "retirementcalculator",
|
||||||
|
"version": "0.1.0",
|
||||||
|
"description": "Retirement Calculator",
|
||||||
|
"main": "index.js",
|
||||||
|
"scripts": {
|
||||||
|
"start": "node /src/app.js",
|
||||||
|
"dev": "nodemon /src/app.js"
|
||||||
|
},
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "git+https://github.com/JoaquinPar/2800-202510-BBY14.git"
|
||||||
|
},
|
||||||
|
"author": "",
|
||||||
|
"license": "MIT",
|
||||||
|
"bugs": {
|
||||||
|
"url": "https://github.com/JoaquinPar/2800-202510-BBY14/issues"
|
||||||
|
},
|
||||||
|
"homepage": "https://github.com/JoaquinPar/2800-202510-BBY14#readme",
|
||||||
|
"dependencies": {
|
||||||
|
"express": "^5.1.0"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"nodemon": "^3.1.10"
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in new issue
Block a user