Skip to content
forked from exceedone/exment

Exment is open source software for managing information assets on the Web. / Exmentは、情報資産をWeb上で管理するための、オープンソースソフトウェアです。

License

Notifications You must be signed in to change notification settings

vital-inc/exment

 
 

Repository files navigation

Exment

For Japanese(日本語)

こちらのサイトにアクセスしてください。
公式サイト
デモサイト一覧
マニュアル

What is Exment?

Exment is open source software for managing information assets on the Web.
For Web Database, SFA, CRM, Business improvement, ...
Official Site
Manual

Functions

  • Dashboard
  • Data registration from the screen
  • Custom table/Custom column creation
  • Import/export templates (Custom tables/Columns can be used with other Exments)
  • Import/export data
  • Value calculation function in form (total amount, calculation of tax amount)
  • Authorization management
  • Organization management
  • Menu configuration management
  • Search (free word search, search words related to information)
  • Mail Template
  • API

And more and more and more functions....

Operating environment

Server

  • PHP 7.1.3 or upper
  • MySQL 5.7.8 or upper and less than 8.0.0, or MariaDB 10.2.7 or upper
  • Laravel5.6

Support Browser

  • Google Chrome
  • Microsoft Edge

Screen Shot

List of Data

List of Data

Data Edit

Data Edit

Search

Search

Dashboard

Dashboard

Calendar

Calendar

QuickStart

You need set up LAMP and install composer.

  • Create Laravel project using composer. ("exment" is project name.)
composer create-project "laravel/laravel=5.6.*" exment
cd exment
  • Require exceedone/exment using composer.
composer require exceedone/exment
php artisan vendor:publish --provider="Exceedone\Exment\ExmentServiceProvider"
  • Edit .env file.
### 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
  • (Recommend) Add error page. Open "app/Exceptions/Handler.php", and modify "render" function.
    /**
     * 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

Other pages

Setup for Develop / 開発方法
Setup for Test / テスト実行方法

issues

Please write issues using English or Japanese. / issuesには英語または日本語で記載してください。

Other repositories

About

Exment is open source software for managing information assets on the Web. / Exmentは、情報資産をWeb上で管理するための、オープンソースソフトウェアです。

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 92.4%
  • Blade 4.0%
  • TypeScript 3.1%
  • SCSS 0.5%