mirror of
https://github.com/not-kennethreitz/morepython.org.git
synced 2026-06-05 23:10:18 +00:00
procfile
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
.env
|
||||
db.sqlite3
|
||||
core/migrations/0002_auto_20190310_1337.py
|
||||
core/models.py
|
||||
|
||||
@@ -1 +1,2 @@
|
||||
web: waitress-serve --port=8041 --url-scheme=https --port=$PORT morepython.wsgi:application
|
||||
release: python manage.py migrate
|
||||
|
||||
@@ -0,0 +1,27 @@
|
||||
# Generated by Django 2.1.7 on 2019-03-10 17:37
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.utils.timezone
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('core', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='post',
|
||||
name='created_date',
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name='post',
|
||||
name='published_date',
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='post',
|
||||
name='timestamp',
|
||||
field=models.DateTimeField(default=django.utils.timezone.now),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user