-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
upstream package for azure blobs (django storage) has not been upgraded yet, if ever. so fix it for the moment here. upgrade django wohn to the latest release of azure keyvault fix finally google analytics move to nginx (https no working) start moving html from back-to-front end include fontawesome FIX for text-align: center; + fonts + other css problems make it buildable again
- Loading branch information
Showing
74 changed files
with
6,429 additions
and
2,465 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,6 +33,7 @@ node_modules/ | |
# local env files | ||
.env.local | ||
.env.*.local | ||
schemav1.json | ||
|
||
# Log files | ||
npm-debug.log* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
131 changes: 131 additions & 0 deletions
131
backend/core/migrations/0002_auto_20191102_2035_squashed_0003_auto_20191102_2157.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,131 @@ | ||
# Generated by Django 2.2.6 on 2019-11-02 21:15 | ||
|
||
import django.core.validators | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
replaces = [('core', '0002_auto_20191102_2035'), ('core', '0003_auto_20191102_2157')] | ||
|
||
dependencies = [ | ||
('core', '0001_initial'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='apartment', | ||
name='apartment_floor', | ||
field=models.PositiveSmallIntegerField(default=0), | ||
), | ||
migrations.AddField( | ||
model_name='apartment', | ||
name='property_address_city_town', | ||
field=models.TextField(null=True), | ||
), | ||
migrations.AddField( | ||
model_name='apartment', | ||
name='property_address_street', | ||
field=models.TextField(null=True), | ||
), | ||
migrations.AddField( | ||
model_name='apartment', | ||
name='property_address_zipcode', | ||
field=models.IntegerField(default=0, validators=[django.core.validators.MinValueValidator(0), django.core.validators.MaxValueValidator(100000)]), | ||
), | ||
migrations.AddField( | ||
model_name='apartment', | ||
name='property_furnished', | ||
field=models.BooleanField(default=False), | ||
), | ||
migrations.AddField( | ||
model_name='apartment', | ||
name='property_garage', | ||
field=models.PositiveSmallIntegerField(default=0), | ||
), | ||
migrations.AddField( | ||
model_name='house', | ||
name='property_address_city_town', | ||
field=models.TextField(null=True), | ||
), | ||
migrations.AddField( | ||
model_name='house', | ||
name='property_address_street', | ||
field=models.TextField(null=True), | ||
), | ||
migrations.AddField( | ||
model_name='house', | ||
name='property_address_zipcode', | ||
field=models.IntegerField(default=0, validators=[django.core.validators.MinValueValidator(0), django.core.validators.MaxValueValidator(100000)]), | ||
), | ||
migrations.AddField( | ||
model_name='house', | ||
name='property_furnished', | ||
field=models.BooleanField(default=False), | ||
), | ||
migrations.AddField( | ||
model_name='house', | ||
name='property_garage', | ||
field=models.PositiveSmallIntegerField(default=0), | ||
), | ||
migrations.AddField( | ||
model_name='room', | ||
name='apartment_floor', | ||
field=models.PositiveSmallIntegerField(default=0), | ||
), | ||
migrations.AddField( | ||
model_name='room', | ||
name='property_address_city_town', | ||
field=models.TextField(null=True), | ||
), | ||
migrations.AddField( | ||
model_name='room', | ||
name='property_address_street', | ||
field=models.TextField(null=True), | ||
), | ||
migrations.AddField( | ||
model_name='room', | ||
name='property_address_zipcode', | ||
field=models.IntegerField(default=0, validators=[django.core.validators.MinValueValidator(0), django.core.validators.MaxValueValidator(100000)]), | ||
), | ||
migrations.AddField( | ||
model_name='room', | ||
name='property_furnished', | ||
field=models.BooleanField(default=False), | ||
), | ||
migrations.AddField( | ||
model_name='room', | ||
name='property_garage', | ||
field=models.PositiveSmallIntegerField(default=0), | ||
), | ||
migrations.AddField( | ||
model_name='apartment', | ||
name='property_status', | ||
field=models.CharField(choices=[('N', 'New'), ('G', 'Good'), ('UC', 'Under Construction')], default='G', max_length=2, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='apartment', | ||
name='property_wash_machine', | ||
field=models.CharField(choices=[('O', 'Owned'), ('S', 'Shared in house'), ('NP', 'Not present')], default='NP', max_length=2), | ||
), | ||
migrations.AddField( | ||
model_name='house', | ||
name='property_status', | ||
field=models.CharField(choices=[('N', 'New'), ('G', 'Good'), ('UC', 'Under Construction')], default='G', max_length=2, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='house', | ||
name='property_wash_machine', | ||
field=models.CharField(choices=[('O', 'Owned'), ('S', 'Shared in house'), ('NP', 'Not present')], default='NP', max_length=2), | ||
), | ||
migrations.AddField( | ||
model_name='room', | ||
name='property_status', | ||
field=models.CharField(choices=[('N', 'New'), ('G', 'Good'), ('UC', 'Under Construction')], default='G', max_length=2, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='room', | ||
name='property_wash_machine', | ||
field=models.CharField(choices=[('O', 'Owned'), ('S', 'Shared in house'), ('NP', 'Not present')], default='NP', max_length=2), | ||
), | ||
] |
76 changes: 76 additions & 0 deletions
76
backend/core/migrations/0004_auto_20191102_2200_squashed_0005_auto_20191102_2208.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
# Generated by Django 2.2.6 on 2019-11-02 21:17 | ||
|
||
import django.core.validators | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
replaces = [('core', '0004_auto_20191102_2200'), ('core', '0005_auto_20191102_2208')] | ||
|
||
dependencies = [ | ||
('core', '0003_auto_20191102_2157'), | ||
] | ||
|
||
operations = [ | ||
migrations.RenameField( | ||
model_name='room', | ||
old_name='apartment_floor', | ||
new_name='room_floor', | ||
), | ||
migrations.AlterField( | ||
model_name='apartment', | ||
name='property_address_zipcode', | ||
field=models.IntegerField(default=0, validators=[django.core.validators.MinValueValidator(9999), django.core.validators.MaxValueValidator(100000)]), | ||
), | ||
migrations.AlterField( | ||
model_name='house', | ||
name='property_address_zipcode', | ||
field=models.IntegerField(default=0, validators=[django.core.validators.MinValueValidator(9999), django.core.validators.MaxValueValidator(100000)]), | ||
), | ||
migrations.AlterField( | ||
model_name='room', | ||
name='property_address_zipcode', | ||
field=models.IntegerField(default=0, validators=[django.core.validators.MinValueValidator(9999), django.core.validators.MaxValueValidator(100000)]), | ||
), | ||
migrations.AlterField( | ||
model_name='apartment', | ||
name='apartment_floor', | ||
field=models.PositiveSmallIntegerField(default=1), | ||
), | ||
migrations.AlterField( | ||
model_name='apartment', | ||
name='property_status', | ||
field=models.CharField(choices=[('N', 'New'), ('G', 'Good'), ('UC', 'Under Construction')], default='G', max_length=3, null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='apartment', | ||
name='property_wash_machine', | ||
field=models.CharField(choices=[('O', 'Owned'), ('S', 'Shared in house'), ('NP', 'Not present')], default='NP', max_length=3), | ||
), | ||
migrations.AlterField( | ||
model_name='house', | ||
name='property_status', | ||
field=models.CharField(choices=[('N', 'New'), ('G', 'Good'), ('UC', 'Under Construction')], default='G', max_length=3, null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='house', | ||
name='property_wash_machine', | ||
field=models.CharField(choices=[('O', 'Owned'), ('S', 'Shared in house'), ('NP', 'Not present')], default='NP', max_length=3), | ||
), | ||
migrations.AlterField( | ||
model_name='room', | ||
name='property_status', | ||
field=models.CharField(choices=[('N', 'New'), ('G', 'Good'), ('UC', 'Under Construction')], default='G', max_length=3, null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='room', | ||
name='property_wash_machine', | ||
field=models.CharField(choices=[('O', 'Owned'), ('S', 'Shared in house'), ('NP', 'Not present')], default='NP', max_length=3), | ||
), | ||
migrations.AlterField( | ||
model_name='room', | ||
name='room_floor', | ||
field=models.PositiveSmallIntegerField(default=1), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.