Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/theluqmn/revenue-manager
title says it all
https://github.com/theluqmn/revenue-manager
api backend finances financing javascript luqmanity manager revenue website
Last synced: 7 days ago
JSON representation
title says it all
- Host: GitHub
- URL: https://github.com/theluqmn/revenue-manager
- Owner: theluqmn
- Created: 2023-09-06T20:03:29.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-11T19:20:15.000Z (over 1 year ago)
- Last Synced: 2024-12-03T04:17:48.395Z (2 months ago)
- Topics: api, backend, finances, financing, javascript, luqmanity, manager, revenue, website
- Language: JavaScript
- Homepage:
- Size: 1.4 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Revenue-Manager
A revenue manager website (backend included).
Not much at the moment. Haven't got a name for it yet so for now, it's `revenue-manager`.# Some notes
Below are some notes you should take note of regarding how it all works.## Structure
All backend code is in the `backend` folder. Everything outside is frontend, or misc.## Database
**Backend**. Database used is PostgreSQL. For `database.js` to work, it requires a JSON which should contain something like the following:
```json
{
"user": "postgres",
"host": "localhost",
"database": "database-name",
"password": "your-password",
"port": 8080
}
```
Please require the file as a variable, then enter it as an argument in the `new Client()` function. By default, it searches
for a JSON file in the same directory named `db_details.json` - which I have in the local version of my machine.