8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-05-10 11:36:25 +00:00

Fix #127 and remove duplicate migration

This commit is contained in:
Maël Kervella 2018-05-28 10:03:15 +00:00
parent acb41cf375
commit a926b28bbc
3 changed files with 14 additions and 21 deletions

View file

@ -22,6 +22,19 @@ rm static/css/jquery-ui-timepicker-addon.css
```
## MR 159: Graph topo & MR 164: branche de création de graph
Add a graph of the network topology
Install *graphviz*:
```
apt-get -y install graphviz
```
Create the *media/images* directory:
```
mkdir -p media/images
```
## MR 163: Fix install re2o
Refactored install_re2o.sh script.

View file

@ -14,3 +14,4 @@ libjs-jquery
libjs-jquery-ui
libjs-jquery-timepicker
libjs-bootstrap
graphviz

View file

@ -1,21 +0,0 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.10.7 on 2018-05-15 18:34
from __future__ import unicode_literals
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('machines', '0080_auto_20180502_2334'),
]
operations = [
migrations.AlterField(
model_name='extension',
name='soa',
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='machines.SOA'),
),
]