db and readme added

This commit is contained in:
2026-06-29 13:17:09 +06:00
parent 4589f4a8d0
commit 4d8beb0f25
3 changed files with 748 additions and 34 deletions

8
.idea/.gitignore generated vendored Normal file
View File

@@ -0,0 +1,8 @@
# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

View File

@@ -1,56 +1,72 @@
# CakePHP # ExpenseCount #
[![Bake Status](https://secure.travis-ci.org/cakephp/cakephp.png?branch=master)](http://travis-ci.org/cakephp/cakephp) A web application to manage group, family and mess expense.
[![Latest Stable Version](https://poser.pugx.org/cakephp/cakephp/v/stable.svg)](https://packagist.org/packages/cakephp/cakephp)
[![License](https://poser.pugx.org/cakephp/cakephp/license.svg)](https://packagist.org/packages/cakephp/cakephp)
[![CakePHP](http://cakephp.org/img/cake-logo.png)](http://www.cakephp.org) ------------------------------------------------------------------------
## 🏗 Project Architecture
CakePHP is a rapid development framework for PHP which uses commonly known design patterns like Active Record, Association Data Mapping, Front Controller and MVC. app/
Our primary goal is to provide a structured framework that enables PHP users at all levels to rapidly develop robust web applications, without any loss to flexibility.
├──
│ ├── Controllers/
│ └── Model/
| └── View/
├── Config/
├── webroot/
├── lib/
## Some Handy Links
[CakePHP](http://www.cakephp.org) - The rapid development PHP framework ------------------------------------------------------------------------
[CookBook](http://book.cakephp.org) - THE CakePHP user documentation; start learning here! ## ⚙️ Requirements
[API](http://api.cakephp.org) - A reference to CakePHP's classes - PHP 7.4
- MySQL
- CakePHP 3
[Plugins](http://plugins.cakephp.org/) - A repository of extensions to the framework ------------------------------------------------------------------------
[The Bakery](http://bakery.cakephp.org) - Tips, tutorials and articles ## 🛠 Installation
[Community Center](http://community.cakephp.org) - A source for everything community related ``` bash
git clone <repository-url>
cd <project-name>
[Training](http://training.cakephp.org) - Join a live session and get skilled with the framework Add lib which is added in onedrive
```
[CakeFest](http://cakefest.org) - Don't miss our annual CakePHP conference ### Database
[Cake Software Foundation](http://cakefoundation.org) - Promoting development related to CakePHP Import database script inside file location db>>expensecount_db.sql
------------------------------------------------------------------------
## ▶️ Running the Project
Base API URL: http://localhost/{project-name}/
## Get Support! ------------------------------------------------------------------------
[#cakephp](http://webchat.freenode.net/?channels=#cakephp) on irc.freenode.net - Come chat with us, we have cake ## 📄 Key Features
``` bash
[Google Group](https://groups.google.com/group/cake-php) - Community mailing list and forum 1. User Registration or Sign up process.
```
[GitHub Issues](https://github.com/cakephp/cakephp/issues) - Got issues? Please tell us! ``` bash
[Roadmaps](https://github.com/cakephp/cakephp/wiki#roadmaps) - Want to contribute? Get involved! 1. Group Expense Management
Can add expense, participant and permission to group related expense(like tour).
2. Family Expense Management
Can add expense, income and permission to group related expense.
3. Mess Expense Management
Can add expense, participant and permission to group related expense(like daily meal).
```
## Contributing
[CONTRIBUTING.md](CONTRIBUTING.md) - Quick pointers for contributing to the CakePHP project
[CookBook "Contributing" Section (2.x)](http://book.cakephp.org/2.0/en/contributing.html) [(3.0)](http://book.cakephp.org/3.0/en/contributing.html) - Version-specific details about contributing to the project
=====
Plan
1. client side or ajax form validation with jquery
2.

690
db/expensecount_db.sql Normal file

File diff suppressed because one or more lines are too long