docs about news

This commit is contained in:
ty kayn 2019-05-11 15:21:13 +02:00
parent f923b8dd28
commit 266f39f91b
2 changed files with 29 additions and 7 deletions

View File

@ -10,6 +10,7 @@ A Symfony project created on March 23, 2018.
## Features: ## Features:
* live selling and stock update on phone and desktop * live selling and stock update on phone and desktop
* multi user registration
* managing products, categories * managing products, categories
* forecast of expenses * forecast of expenses
* events * events
@ -22,10 +23,16 @@ A Symfony project created on March 23, 2018.
--- ---
## [Install](/docs/installation.md) ## [Install](/docs/installation.md)
Have a look at the [Docs to install](/docs/installation.md) your own Caisse. All documentation is in the "docs" folder. Have a look at the [Docs to install](/docs/installation.md) your own Caisse. All documentation is in the "docs" folder.
Made By Tykayn/CipherBliss under [AGPL Licence](LICENSE). Made By Tykayn/CipherBliss under [AGPL Licence](LICENSE).
## News
Ipublish news about this app here:
https://www.cipherbliss.com
So here is a tag: https://www.cipherbliss.com/tag/caisse/
You can follow the website with RSS/atom feeds.
https://www.cipherbliss.com/feed/
www.cipherbliss.com
## Where to find help ## Where to find help
Join the discussion at the Matrix Channel of CipherBliss: Join the discussion at the Matrix Channel of CipherBliss:
@ -37,4 +44,5 @@ Or contact the Author:
[logo]: https://www.cipherbliss.com/wp-content/uploads/2016/12/rond.png "Logo of CipherBliss company" [logo]: https://www.cipherbliss.com/wp-content/uploads/2016/12/rond.png "Logo of CipherBliss company"
[screenshot_home]: https://www.cipherbliss.com/wp-content/uploads/2018/09/caisse_bliss_descritpion_open_source_cipherbliss-1260x709.png "Screenshot of Caisse Bliss" [screenshot_home]: https://www.cipherbliss.com/wp-content/uploads/2018/09/caisse_bliss_descritpion_open_source_cipherbliss-1260x709.png "Screenshot of Caisse Bliss"
Hosted on Framagit.org
https://framagit.org/tykayn/caisse-bliss.git

View File

@ -1,24 +1,35 @@
# Requirements: # Requirements:
a web server speaking PHP, composer and NPM to install dependencies. a web server speaking PHP, composer and NPM to install dependencies.
I develop on Ubuntu, so here are the steps i recommend: I develop on [Ubuntu](https://ubuntu.org), so here are the steps i recommend:
## Install [Composer](https://getcomposer.org/download/) via PHP command ## Install [Composer](https://getcomposer.org/download/) via PHP command
Composer manages dependencies of a lot of php projects. Try these commands or refer to [the download docs of getcomposer.org](https://getcomposer.org/download/)
``` ```
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
php -r "if (hash_file('sha384', 'composer-setup.php') === '48e3236262b34d30969dca3c37281b3b4bbe3221bda826ac6a9a62d6444cdb0dcd0615698a5cbe587c3f0fe57a54d8f5') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;" php -r "if (hash_file('sha384', 'composer-setup.php') === '48e3236262b34d30969dca3c37281b3b4bbe3221bda826ac6a9a62d6444cdb0dcd0615698a5cbe587c3f0fe57a54d8f5') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
php composer-setup.php php composer-setup.php
php -r "unlink('composer-setup.php');" php -r "unlink('composer-setup.php');"
composer install
``` ```
# Installation: # Installation:
install dependencies with [the bash script](/install.sh): When you have satisfied all the previous requirements you can install dependencies with [the bash script](/install.sh):
```bash ```bash
bash install.sh bash install.sh
``` ```
## Configure your app parameters ## Configure your app parameters
In the [paramters.yml](/app/config/parameters.yml) file, setup your database access. Works with mysql and others via the magic of Doctrine ORM. In the [paramters.yml](/app/config/parameters.yml) file, setup your database access (create your DB if necessary). Works with mysql and others via the magic of Doctrine ORM.
```yaml
database_host: 127.0.0.1
database_port: null
database_name: symfony
database_user: YOURDATABASEUSER
database_password: YOURDATABASEPASSWORD
```
update schema with doctrine in the command line. update schema with doctrine in the command line.
```bash ```bash
@ -36,3 +47,6 @@ php bin/console server:run
firefox http://http://127.0.0.1:8000/ firefox http://http://127.0.0.1:8000/
``` ```
enjoy! enjoy!
#install via Docker ?
I didn't do that for the moment, but you can contribute to this if you like to.