Stars: 233
Forks: 58
Pull Requests: 617
Issues: 740
Watchers: 17
Last Updated: 2023-09-15 07:20:50
Exment is open source software for managing information assets on the Web. / Exmentは、情報資産をWeb上で管理するための、オープンソースソフトウェアです。
License: GNU General Public License v3.0
Languages: PHP, TypeScript, Blade, SCSS, JavaScript, CSS
こちらのサイトにアクセスしてください。
公式サイト
デモサイト一覧
マニュアル
Exment is open source software for managing information assets on the Web.
For Web Database, SFA, CRM, Business improvement, ...
Official Site
Manual
Demo site
Then please enter
Usercode:admin
Password:adminadmin
And more and more and more functions....
You need set up LAMP and install composer.
composer create-project "laravel/laravel=6.*" exment
cd exment
composer require exceedone/exment
php artisan vendor:publish --provider="Exceedone\Exment\ExmentServiceProvider"
### Database setting
# Change database setting
# If your database is MySQL, as below
DB_CONNECTION=mysql
# If your database is MariaDB, as below.
DB_CONNECTION=mariadb
DB_HOST=127.0.0.1 #MySQL host name
DB_PORT=3306 #MySQL port no.
DB_DATABASE=homestead #MySQL database name for Exment.
DB_USERNAME=homestead #MySQL user name for Exment.
DB_PASSWORD=secret #MySQL password name for Exment.
### timezone and locale
APP_TIMEZONE=America/Santiago
APP_LOCALE=en
/**
* Render an exception into an HTTP response.
*
* @param \Illuminate\Http\Request $request
* @param \Exception $exception
* @return \Illuminate\Http\Response
*/
public function render($request, Exception $exception)
{
// Modify
return \Exment::error($request, $exception, function($request, $exception){
return parent::render($request, $exception);
});
}php artisan serve
Exment does not currently have a community forum. I am taking advantage of issues. However, we may use some other platform in the future. If you have detailed knowledge, I would be grateful if you could give me a recommendation.
現在、Exmentではコミュニティ・フォーラムを用意していません。issueを活用しています。 ただし、将来的に何か他のプラットフォームを使うかもしれません。詳しい知見をお持ちの方は、推奨を教えてください。
Pull Requests are always welcome. Currently, I'd be happy if you actually implemented the function rather than requesting a new function.
Pull Requestはいつでも大歓迎です。現在は、新しい機能の要望よりも、その機能を実際に実装していただいた方が、嬉しいです。
Setup for Develop En / 開発方法 日本語
Setup for Test En / テスト実行方法 日本語
Please write issues using English or Japanese. / issuesには英語または日本語で記載してください。
laravel-admin
Based Exment's framework. Forked from z-song/laravel-admin.
Manual
For exment manual page.
Update Batch
Update batch.
Auto Composer
Call auto composer.
Docker
Exment dockers.
Plugin Sample
Exment plugin's samples.
Spout
Excel import and export library.
Forked from box/spout. We forked because box/spout is archived.