leoshtika/crowd-notes
Composer 安装命令:
composer require leoshtika/crowd-notes
包简介
A notes manager application created with Yii2, providing backend, frontend, console and RESTful API
README 文档
README
This is a notes manager application created with Yii2, providing backend, frontend and RESTful API. It can be used for cheat sheets, password keeper, grocery list and much more!
Requirements
- PHP 5.4 or higher
- Database (MySQL, SQLite, PostgreSQL or other)
How to use
...
Workflow for crowd-notes contributors
Prepare your development environment
1. Fork the crowd-notes repository on GitHub and clone your fork to your development environment
git clone https://github.com/YOUR-GITHUB-USERNAME/crowd-notes.git
2. Add the main crowd-notes repository as an additional git remote called "upstream"
git remote add upstream https://github.com/leoshtika/crowd-notes.git
3. Install dependencies (assuming you have composer installed globally)
composer install
Note: If you see errors like Problem 1 The requested package bower-asset/jquery could not be found in any version, there may be a typo in the package name, you will need to run:
composer global require "fxp/composer-asset-plugin:~1.0.3"
4. Initialize the application
Run the php init file with this command:
php init
You will be asked to chose environment. Chose Development (type "0" and press enter)
5. Create a new database
Create a new database (MySQL, SQLite, PostgreSQL or other) and run the following SQL query
@TODO: Create a migration
CREATE TABLE IF NOT EXISTS `item` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`note_id` int(11) NOT NULL,
`text` text NOT NULL,
`status` smallint(6) NOT NULL DEFAULT '10',
PRIMARY KEY (`id`),
KEY `note_id` (`note_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
CREATE TABLE IF NOT EXISTS `note` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL,
`user_id` int(11) NOT NULL,
`color` varchar(6) NOT NULL DEFAULT 'FFFFFF',
`status` smallint(6) NOT NULL DEFAULT '10',
`created_at` int(11) NOT NULL,
`updated_at` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
CREATE TABLE IF NOT EXISTS `user` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`username` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`auth_key` varchar(32) COLLATE utf8_unicode_ci NOT NULL,
`password_hash` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`password_reset_token` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`first_name` varchar(128) COLLATE utf8_unicode_ci NOT NULL,
`last_name` varchar(128) COLLATE utf8_unicode_ci NOT NULL,
`role` smallint(6) NOT NULL DEFAULT '10',
`status` smallint(6) NOT NULL DEFAULT '10',
`created_at` int(11) NOT NULL,
`updated_at` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `username` (`username`),
UNIQUE KEY `email` (`email`),
UNIQUE KEY `password_reset_token` (`password_reset_token`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=3 ;
ALTER TABLE `item`
ADD CONSTRAINT `item_ibfk_1` FOREIGN KEY (`note_id`) REFERENCES `note` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
ALTER TABLE `note`
ADD CONSTRAINT `note_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `user` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
Configure the database connection via the dsn component property in common/config/main-local.php file
Working on bugs and features
Having prepared your develop environment as explained above you can now start working on the feature or bugfix.
1. Make sure there is an issue created for the thing you are working on if it requires significant effort to fix
All new features and bug fixes should have an associated issue to provide a single point of reference for discussion and documentation. If you do not find an existing issue matching what you intend to work on, please open a new issue or create a pull request directly if it is straightforward fix.
2. Fetch the latest code from the main crowd-notes branch
You should start at this point for every new contribution to make sure you are working on the latest code.
git checkout master
git pull upstream master
3. Create a new branch for your feature based on the current crowd-notes master branch
Each separate bug fix or change should go in its own branch. Branch names should be descriptive and start with the number of the issue that your code relates to. If you aren't fixing any particular issue, just skip number. For example:
git checkout -b 999-name-of-your-branch
4. Do your magic, write your code
All new code should follow PSR-2 coding standard. Make sure it works :)
5. Commit your changes
git add --all
git commit -m "Resolve #999: A brief description of this change"
6. Pull the latest code from upstream, rebase & squash your changes
Before pushing your code to GitHub make sure to integrate upstream changes into your local repository
git checkout master
git pull upstream master
git checkout 999-name-of-your-branch
git rebase master
This ensures that your changes can be merged with one click.
Squash commits This step is not always necessary, but is required when your commit history is full of small, unimportant commits.
git rebase -i master
7. Push your code to GitHub
git push -u origin 999-name-of-your-branch
8. Open a pull request against upstream
Go to your repository on GitHub and click "Pull Request", choose your branch on the right and enter some more details in the comment box. To link the pull request to the issue put anywhere in the pull comment #999 where 999 is the issue number. Note that each pull-request should fix a single change.
9. Someone will review your code
Someone will review your code, and you might be asked to make some changes, if so go to step #5 (you don't need to open another pull request if your current one is still open). If your code is accepted it will be merged into the main branch and become part of the next release.
10. Cleaning it up
After your code was either accepted or declined you can delete branches you've worked with from your local repository and origin.
git checkout master
git branch -D 999-name-of-your-branch
git push origin --delete 999-name-of-your-branch
leoshtika/crowd-notes 适用场景与选型建议
leoshtika/crowd-notes 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 0 次下载、GitHub Stars 达 0, 最近一次更新时间为 2015 年 10 月 18 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「yii2」 「notes」 「RESTful API」 「crowd-notes」 「To-do list」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 leoshtika/crowd-notes 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 leoshtika/crowd-notes 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 leoshtika/crowd-notes 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A custom URL rule class for Yii 2 which allows to create translated URL rules
Add Sticky Notes to your FilamentPHP dashboard with tons of options and style
This is a restful api to onesignal.
Easily add notes to any record in WinterCMS
A RESTful API package for the Laravel and Lumen frameworks.
SCEditor, a lightweight WYSIWYG BBCode & HTML editor extension for Yii 2.0 Framework
统计信息
- 总下载量: 0
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 30
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2015-10-18