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

Commit 911e269

Browse files
author
Apache
committed
add migration and fix cron
1 parent 873cff7 commit 911e269

File tree

12 files changed

+57
-2
lines changed

12 files changed

+57
-2
lines changed
-41 Bytes
Binary file not shown.
-41 Bytes
Binary file not shown.
-41 Bytes
Binary file not shown.
-41 Bytes
Binary file not shown.
-41 Bytes
Binary file not shown.
-41 Bytes
Binary file not shown.
-41 Bytes
Binary file not shown.
-41 Bytes
Binary file not shown.
-41 Bytes
Binary file not shown.
-41 Bytes
Binary file not shown.

cronjobs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
0 0 * * 2 root /usr/bin/mysqldump -u root --databases blog_data | gzip > /tmp/database_$(date +\%m-\%d-\%H).sql.gz
2-
* * * * * apache /usr/bin/echo `date` &>> /var/www/python-blogs/python-blogs/logs/cron.log.$(date +\%Y-\%m-\%d);/var/www/python-blogs/venv/bin/python /var/www/python-blogs/python-blogs/manage.py runcron &>> /var/www/python-blogs/python-blogs/logs/cron.log.$(date +\%Y-\%m-\%d)
3-
* * * * * apache ( cd /var/www/python-blogs/python-blogs && /usr/bin/git pull && chown -R apache.apache /var/www/python-blogs ) > /dev/null 2>&1
2+
1 * * * * apache /usr/bin/echo `date` &>> /var/www/python-blogs/python-blogs/logs/cron.log.$(date +\%Y-\%m-\%d);/var/www/python-blogs/venv/bin/python /var/www/python-blogs/python-blogs/manage.py runcron &>> /var/www/python-blogs/python-blogs/logs/cron.log.$(date +\%Y-\%m-\%d)
3+
1 * * * * apache ( cd /var/www/python-blogs/python-blogs && /usr/bin/git pull && chown -R apache.apache /var/www/python-blogs ) > /dev/null 2>&1
44
0 0 * * 2 root systemctl restart httpd > /dev/null
+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# Generated by Django 3.2.11 on 2022-07-03 14:24
2+
3+
from django.db import migrations, models
4+
import django.db.models.deletion
5+
import gsoc.models
6+
7+
8+
class Migration(migrations.Migration):
9+
10+
dependencies = [
11+
('gsoc', '0007_builder_timeline'),
12+
]
13+
14+
operations = [
15+
migrations.CreateModel(
16+
name='DaysConf',
17+
fields=[
18+
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
19+
('title', models.CharField(max_length=100)),
20+
('days', models.IntegerField()),
21+
('disabled', models.BooleanField(default=False)),
22+
],
23+
),
24+
migrations.AddField(
25+
model_name='builder',
26+
name='bpdd',
27+
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='gsoc.blogpostduedate'),
28+
),
29+
migrations.AddField(
30+
model_name='builder',
31+
name='event',
32+
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='gsoc.event'),
33+
),
34+
migrations.AlterField(
35+
model_name='blogpostduedate',
36+
name='title',
37+
field=models.CharField(default='Loading...', max_length=100),
38+
),
39+
migrations.AlterField(
40+
model_name='builder',
41+
name='category',
42+
field=models.CharField(choices=[('build_pre_blog_reminders', 'build_pre_blog_reminders'), ('build_post_blog_reminders', 'build_post_blog_reminders'), ('build_revoke_student_perms', 'build_revoke_student_perms'), ('build_remove_user_details', 'build_remove_user_details'), ('build_add_timeline_to_calendar', 'build_add_timeline_to_calendar'), ('build_add_bpdd_to_calendar', 'build_add_bpdd_to_calendar'), ('build_add_event_to_calendar', 'build_add_event_to_calendar')], max_length=40),
43+
),
44+
migrations.AlterField(
45+
model_name='builder',
46+
name='timeline',
47+
field=models.ForeignKey(default='', on_delete=django.db.models.deletion.CASCADE, to='gsoc.timeline'),
48+
preserve_default=False,
49+
),
50+
migrations.AlterField(
51+
model_name='gsocyear',
52+
name='gsoc_year',
53+
field=models.IntegerField(primary_key=True, serialize=False, validators=[gsoc.models.validate_date]),
54+
),
55+
]

0 commit comments

Comments
 (0)