https://github.com/steedos/expense-management-app
Steedos Expense Management App help you track and manage your expense items, and has detailed reporting capabilities. / 使用华炎魔方低代码平台开发的费用管理系统。
https://github.com/steedos/expense-management-app
expense-manager low-code mongodb nodejs
Last synced: 2 months ago
JSON representation
Steedos Expense Management App help you track and manage your expense items, and has detailed reporting capabilities. / 使用华炎魔方低代码平台开发的费用管理系统。
- Host: GitHub
- URL: https://github.com/steedos/expense-management-app
- Owner: steedos
- License: other
- Created: 2020-12-24T02:58:06.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-12-26T01:28:24.000Z (over 4 years ago)
- Last Synced: 2025-01-12T14:29:03.261Z (4 months ago)
- Topics: expense-manager, low-code, mongodb, nodejs
- Language: JavaScript
- Homepage: http://www.steedos.org/
- Size: 486 KB
- Stars: 2
- Watchers: 6
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
Steedos Expense Management System
Help you track and manage expense items, and has detailed reporting functions. The system is based on Steedos Platform and metadata driven, which can be quickly customized.
🤖 🎨 🚀## About Steedos Platform
Steedos Platform is a visual modeling and descriptive programming development tool. The design goal is to lower the threshold of application construction so that everyone can participate in the development. The system has built-in data modeling and a series of automatic tools, including validation rules, public computing, workflow rules, automatic operation, approval process, report engine and so on.
- [Steedos Platform](https://www.steedos.org/)
## Requirements
- [MongoDB](https://www.mongodb.com/try/download/) version >= 3.4. MongoDB is a general purpose, document-based, distributed database built for modern application developers and for the cloud era.
- [Node.js](https://nodejs.org/en/download/) version >= 10.15.1 or above (which can be checked by running `node -v`). You can use [nvm](https://github.com/nvm-sh/nvm) for managing multiple Node versions on a single machine installed.
- [Yarn](https://yarnpkg.com/en/) version >= 1.5 (which can be checked by running `yarn version`). Yarn is a performant package manager for JavaScript and replaces the `npm` client. It is not strictly necessary but highly encouraged.## Project Structure
```sh
expense-management-app
├── steedos-app/main/default
│ ├── applications
│ │ └── expense.app.yml
│ └── objects
│ └──expense__c
│ ├── buttons
│ │ └── print.button.yml
│ │ └── print.button.js
│ ├── fields
│ │ └── name.field.yml
│ │ └── description.field.yml
│ │ └── isDone.field.yml
│ │ └── status__c.field
│ │ └── ...
│ ├── listviews
│ │ └── all.listview.yml
│ │ └── recent.listview.yml
│ │ └── my.listview.yml
│ ├── permissions
│ │ └── user.permission.yml
│ │ └── admin.permission.yml
│ │ └── expense_manager.permission.yml
│ └── expense.object.yml
│ └──...
├── .env
├── .gitignore
├── package.json
├── README.md
├── server.js
├── steedos-config.yml
└── yarn.lock
```## Quick Start
The source code of the project depends on nodejs environment. To use mongodb database, the corresponding running environment should be deployed first.
1. Start the database
2. Install dependent packages
3. Running project
4. Using browser access `http://127.0.0.1:5000/` For the first time, the database is empty. You need to register an account and choose to create an enterprise.## Keep in Contact
If you have any questions or want to talk to other users of Steedos Platform , please jump to GitHub for discussion [Click to Discuss](https://github.com/steedos/steedos-platform/discussions) or [Join me on Slack-it's a faster,simpler way to work](https://join.slack.com/t/steedos/shared_invite/zt-jq7eupr9-cgKrUOyWb1zymniRzhH4jg).