This issue recommends an open source ICT asset management system – chemex (Coffee pot).
The Coffee Pot (Chemex) is a lightweight, modern design style ICT asset management system. Thanks to the Laravel framework and the Dcat Admin development platform, it has an elegant and concise experience. Chemex is completely free and open source, and anyone can modify the code and deploy the service without limit, which is a good choice for many small and medium-sized enterprises that want to do information management of ICT assets: low cost in exchange for efficient management solutions, and at the same time, a healthy ecology provides support.
Features
- Development with advanced Web frameworks
- Simple and elegant user experience
- Flexible and configurable custom fields
Installation
chemex is a standard Laravel application that also works on all LNMP/WNMP/DNMP environments, and while there are many ways to deploy it, Docker deployment is highly recommended.
Docker:
The Docker deployment does not create a database container, which means that you must have an existing database and connect to the database via parameter injection when starting chemex.
docker pull celaraze/chemex:latest
docker run -itd --restart=always -p 80:80 \
-e DB_HOST= database address \
-e DB_PORT= database port \
-e DB_DATABASE= database name \
-e DB_USERNAME= database account \
-e DB_PASSWORD= database password \
celaraze/chemex
Access chemex at http://127.0.0.1.
Manual deployment:
Prerequisites:
- git: necessary tools for managing releases, deploying and upgrading
- PHP: only PHP8
- composer: package management tool for PHP for installing necessary dependency packages
- MySQL 5.7: database engine, theoretically compatible with MariaDB 10.2 + support
- ext-zip: extension
- ext-json: extension
- ext-fileinfo: extension
- ext-ldap: extension
- ext-bcmath: extension
- ext-mysqli: extension
- ext-xml: extension
- ext-xmlrpc: extension
Note that the above extension installation version must be consistent with the PHP version.
Installation steps:
In a production environment, to comply with security policies, it is recommended to deploy on the local server. The online initial installation function is not provided for the time being. Therefore, although there are more steps in the early deployment, a large part of the process has been automated for everyone, and you only need to follow the following commands step by step, generally there will be no deployment problems.
1, install PHP8 environment for your computer
2, install MySQL or mariadb on your computer
3, where you want, run mkdir chemex & & cd chemex
4. Execute git clone
https://gitee.com/celaraze/chemex.git, pay attention to at the end of the. Also need to include < / p >
5. Run git submodule init & & git submodule update
6. Run cp.env.example. env
7, configure according to the annotated guidelines in the.env file
8. Run composer update-vvv
9, you may use the web server for nginx and apache, in any case, the application start path in the /public directory, please make sure to point correctly, and the application root directory permissions should be adjusted to: The owner is the same as the user running your Web server, such as the www user, and the root permission is 755
Set the /storage directory to 755 permissions
/public directory set to 755 permissions
10. Change the pseudo-static rules of the web server to: try_files $uri $uri/ /index.php? $args;
11. Run php artisan chemex:install
12. At this point, you can use the coffee maker by visiting http://your_domain. The administrator account password is admin/admin
.
Interface
—END—
Open Source protocol: GPL3.0