Skip to content
This repository was archived by the owner on Jan 25, 2024. It is now read-only.

Commit

Permalink
update prod and dev envs, add migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
birbjam committed Mar 12, 2021
1 parent 51b36de commit 2c7487d
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gcloudignore
Original file line number Diff line number Diff line change
Expand Up @@ -239,3 +239,6 @@ fabric.properties

# The Git folder
.git/

env-localprod.sh
env-local.sh
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ envi/
setupHeroku.sh
setupLocal.sh
env.sh
env-localprod.sh
env-local.sh

.vscode/

Expand Down
23 changes: 23 additions & 0 deletions projects/migrations/0005_auto_20210312_2027.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Generated by Django 3.0.7 on 2021-03-12 20:27

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('projects', '0004_auto_20210310_1910'),
]

operations = [
migrations.AlterField(
model_name='project',
name='title',
field=models.CharField(max_length=300, null=True),
),
migrations.AlterField(
model_name='project',
name='url',
field=models.URLField(blank=True, null=True),
),
]

0 comments on commit 2c7487d

Please sign in to comment.