libre-informatique / lisem-project
LISem is an ERP specialized for seeds producers and craftsmen.
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 6
Forks: 0
Open Issues: 0
Type:project
Requires
- php: >=7.1
- ext-curl: *
- ext-exif: *
- ext-fileinfo: *
- ext-gd: *
- ext-intl: *
- ext-mbstring: *
- ext-pgsql: *
- ext-zip: *
- blast-project/base-entities-bundle: 0.6.4
- blast-project/core-bundle: 0.6.4
- blast-project/doctrine-pgsql-bundle: 0.6.4
- blast-project/doctrine-session-bundle: 0.6.4
- blast-project/outer-extension-bundle: 0.6.4
- blast-project/resource-bundle: 0.6.4
- blast-project/utils-bundle: 0.6.4
- doctrine/dbal: ^2.5
- doctrine/doctrine-bundle: ^1.6
- doctrine/doctrine-fixtures-bundle: ^2.3
- doctrine/orm: ^2.5
- incenteev/composer-parameter-handler: ^2.1
- jms/security-extra-bundle: ^1.6
- jms/serializer-bundle: ^2.0
- knplabs/knp-snappy-bundle: ^1.0
- lexik/maintenance-bundle: ^2.1
- libre-informatique/crm-bundle: 0.6.4
- libre-informatique/decorator-bundle: 0.6.4
- libre-informatique/ecommerce-bundle: 0.6.4
- libre-informatique/email-bundle: 0.6.4
- libre-informatique/email-crm-bundle: 0.6.4
- libre-informatique/media-bundle: 0.6.4
- libre-informatique/seed-batch-bundle: 0.6.4
- libre-informatique/sonata-sylius-user-bundle: 0.6.4
- libre-informatique/sylius-paybox-bundle: 0.6.4
- libre-informatique/varieties-bundle: 0.6.4
- nelmio/api-doc-bundle: ^2.13
- sensio/distribution-bundle: ^5.0
- sensio/framework-extra-bundle: ^3.0.2
- sensio/generator-bundle: ^3.0
- sil-project/manufacturing-bundle: 0.6.4
- sil-project/stock-bundle: 0.6.4
- sonata-project/admin-bundle: ^3.4
- sonata-project/core-bundle: ^3.0
- sonata-project/datagrid-bundle: ^2.2
- sonata-project/doctrine-orm-admin-bundle: ^3.0
- sonata-project/easy-extends-bundle: ^2.1
- sonata-project/intl-bundle: ^2.2
- sylius/sylius: ^1.0
- symfony/assetic-bundle: ^2.8
- symfony/monolog-bundle: ^3.0.2
- symfony/swiftmailer-bundle: ^3.0
- symfony/symfony: ^3.3
- trappar/alice-generator-bundle: ^1.1
Requires (Dev)
- alexandresalome/doctrine-extra-bundle: ^0.3.0
- codeception/codeception: ^2.3
- lexik/translation-bundle: ^4.0
- nelmio/alice: ^2.2
- phpunit/phpunit: ^6.4
This package is not auto-updated.
Last update: 2024-10-27 05:20:15 UTC
README
LISem is an ERP specialized for seeds producers and craftsmen. It uses many libraries from :
THIS PROJECT IS STILL UNUSABLE, IT'S A WORK IN PROGRESS
Installation
Download project
With SSH (if you have a GitHub account) :
$ git clone git@github.com:libre-informatique/LISemSymfonyProject.git
... or with HTTPS:
$ git clone https://github.com/libre-informatique/LISemSymfonyProject
Create and configure the database
Create a database. For example, if you are using PostgreSQL :
CREATE USER lisem_user WITH PASSWORD 'this-is-my-lisem-password'; CREATE DATABASE lisem; GRANT ALL PRIVILEGES ON DATABASE lisem TO lisem_user; \connect lisem; CREATE EXTENSION IF NOT EXISTS "uuid-ossp";
Configure the LiSem application according to your database settings:
# app/config/parameters.yml parameters: database_host: 127.0.0.1 database_port: 5432 database_name: lisem database_user: lisem_user database_password: this-is-my-lisem-password
Create tables:
$ bin/console doctrine:schema:create
Install dependencies (vendors)
Make sure you have the latest version of composer installed, then :
$ cd LISemSymfonyProject
$ composer install
It will install part of the assets. See below to see how to install the remaining assets (Sylius assets)
Setup application
$ bin/console lisem:install:setup --with-samples
Deploy Sylius assets
You need node.js installed for this section.
$ bin/console sylius:theme:assets:install $ npm install $ npm run gulp
Tadaaa !
Launch your PHP server :
$ bin/console server:start
In your browser you should now be able to check these pages :
- Shop homepage: http://127.0.0.1:8000
- LISem administration: http://127.0.0.1:8000/admin
- Sylius administration: http://127.0.0.1:8000/sylius-admin
For the admin pages, the login / password is : lisem@lisem.eu / lisem
If you encounter cache and/or log directory problems
Add cache_dir
and logs_dir
parameters to your parameter.yml with the absolute path to the cache and log directories.
For example :
# app/config/parameters.yml parameters: cache_dir: /tmp logs_dir: /tmp