Skip to content

Commit

Permalink
v1.0.36 - Update Deps
Browse files Browse the repository at this point in the history
  • Loading branch information
app-generator committed Sep 17, 2024
1 parent 0135db3 commit a898c3b
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@
/node_modules/
build/
env
env__
/staticfiles/

#src
*.sqlite*
#*.sqlite*

#.env
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log

## [1.0.36] 2024-09-17
### Changes

- Update Dependencies

## [1.0.35] 2024-08-04
### Changes

Expand Down
Binary file added db.sqlite3
Binary file not shown.
22 changes: 22 additions & 0 deletions home/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Generated by Django 5.1.1 on 2024-09-17 04:00

from django.db import migrations, models


class Migration(migrations.Migration):

initial = True

dependencies = []

operations = [
migrations.CreateModel(
name="Product",
fields=[
("id", models.AutoField(primary_key=True, serialize=False)),
("name", models.CharField(max_length=100)),
("info", models.CharField(default="", max_length=100)),
("price", models.IntegerField(blank=True, null=True)),
],
),
]
10 changes: 5 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
# Core
django==4.2.9
Django==5.1.1
python-dotenv==1.0.1
str2bool==1.1

# UI
django-admin-datta==1.0.10
django-admin-datta==1.0.11

# Tooling
django-dynamic-datatb==1.0.25
django-api-generator==1.0.17
django-debug-toolbar==4.2.0
django-debug-toolbar==4.4.6

# Deployment
whitenoise==6.6.0
gunicorn==21.2.0
whitenoise==6.7.0
gunicorn==23.0.0

# DB Layer
# psycopg2-binary
Expand Down

0 comments on commit a898c3b

Please sign in to comment.