Skip to content

Commit

Permalink
Bump version to 4.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Mael Lacour committed May 24, 2018
1 parent 8797e50 commit 41a051a
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 19 deletions.
32 changes: 16 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<img src="./static/static_dirs/img/borgia-logo-light.png" />
</p>

Build : [4.5.4](https://github.com/borgia-app/Borgia/releases/tag/4.5.4)
Last Build : [4.6.0](https://github.com/borgia-app/Borgia/releases/tag/4.6.0)

Licence : [GNU GPL version 3](./license.txt)

Expand All @@ -16,30 +16,30 @@ Borgia est un outil qui permet de construire, gérer et organiser votre vie étu

### Installer les modules Python

* `pip install -r requirements.txt`.
- `pip install -r requirements.txt`.

### Installer LESS

* `yarn global add less`.
- `yarn global add less`.

### Paramètres

* Modifier le fichier `borgia/settings.py` en fonction de vos données et paramètres (notamment domaines, compte Lydia et compte mail).
- Modifier le fichier `borgia/settings.py` en fonction de vos données et paramètres (notamment domaines, compte Lydia et compte mail).

### Charger les données initiales

* Charger les migrations & les données initiales :
* `python manage.py makemigrations users shops finances modules settings_data notifications stocks`,
* `python manage.py migrate`,
* `python manage.py loaddata initial`.
* Changer le mot de passe du compte admin :
* `python manage.py loaddata first_member`,
* `python manage.py shell`,
* `from users.models import User`,
* `u = User.objects.get(pk=2)`,
* `u.set_password('admin')`.
* `u.save()`
* Créer ensuite les différents magasins avec l'interface graphique. Attention, ne pas oublier d'ajouter des utiliseurs aux groupes `chefs` et `associés` de chaque magasin après la création.
- Charger les migrations & les données initiales :
- `python manage.py makemigrations users shops finances modules settings_data notifications stocks`,
- `python manage.py migrate`,
- `python manage.py loaddata initial`.
- Changer le mot de passe du compte admin :
- `python manage.py loaddata first_member`,
- `python manage.py shell`,
- `from users.models import User`,
- `u = User.objects.get(pk=2)`,
- `u.set_password('admin')`.
- `u.save()`
- Créer ensuite les différents magasins avec l'interface graphique. Attention, ne pas oublier d'ajouter des utiliseurs aux groupes `chefs` et `associés` de chaque magasin après la création.

## Se documenter

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Borgia",
"version": "4.5.2",
"version": "4.6.0",
"author": "Borgia-app",
"url": "https://github.com/borgia-app/Borgia",
"license": "GPL-3.0",
Expand Down
4 changes: 2 additions & 2 deletions templates/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
</div>
<div class="col-xs-3">
<p class="navbar-text pull-right">
<a href="https://github.com/borgia-app/Borgia/releases/tag/4.5.6" style="color: #777;">
<a href="https://github.com/borgia-app/Borgia/releases/tag/4.6.0" style="color: #777;">
<i class="fa fa-code-fork" aria-hidden="true"></i>
Build 4.5.6
Build 4.6.0
</a>
</p>
</div>
Expand Down

0 comments on commit 41a051a

Please sign in to comment.