Compare commits
2 commits
6e8ff8a4e6
...
7e6dd9d82d
Author | SHA1 | Date | |
---|---|---|---|
7e6dd9d82d | |||
bcb3dedc36 |
2 changed files with 23 additions and 15 deletions
|
@ -23,9 +23,11 @@ def get_upload_to_banner(instance, filename):
|
|||
|
||||
class User_Profile_Images(models.Model):
|
||||
|
||||
file_hash = models.CharField(unique=True, max_length=64,)
|
||||
file_hash = models.CharField(unique=True, max_length=64)
|
||||
file_name = models.CharField(max_length=150, blank=True)
|
||||
file = models.FileField(upload_to=get_upload_to_profile, blank=True)
|
||||
file_mime = models.CharField(max_length=64, blank=True)
|
||||
file_ext = models.CharField(max_length=64, blank=True)
|
||||
date_added = models.DateTimeField(auto_now_add=True, editable=True)
|
||||
|
||||
class Meta:
|
||||
|
@ -41,9 +43,11 @@ class User_Profile_Images(models.Model):
|
|||
|
||||
class User_Banner_Images(models.Model):
|
||||
|
||||
file_hash = models.CharField(unique=True, max_length=64,)
|
||||
file_hash = models.CharField(unique=True, max_length=64)
|
||||
file_name = models.CharField(max_length=150, blank=True)
|
||||
file = models.FileField(upload_to=get_upload_to_banner, blank=True)
|
||||
file_mime = models.CharField(max_length=64, blank=True)
|
||||
file_ext = models.CharField(max_length=64, blank=True)
|
||||
date_added = models.DateTimeField(auto_now_add=True, editable=True)
|
||||
|
||||
class Meta:
|
||||
|
@ -59,9 +63,11 @@ class User_Banner_Images(models.Model):
|
|||
|
||||
class Submission_File(models.Model):
|
||||
|
||||
file_hash = models.CharField(unique=True, max_length=64,)
|
||||
file_hash = models.CharField(unique=True, max_length=64)
|
||||
file_name = models.CharField(max_length=150, blank=True)
|
||||
file = models.FileField(upload_to=get_upload_to_submission, blank=True)
|
||||
file_mime = models.CharField(max_length=64, blank=True)
|
||||
file_ext = models.CharField(max_length=64, blank=True)
|
||||
date_added = models.DateTimeField(auto_now_add=True, editable=True)
|
||||
|
||||
class Meta:
|
||||
|
@ -77,9 +83,11 @@ class Submission_File(models.Model):
|
|||
|
||||
class Metadata_Files(models.Model):
|
||||
|
||||
file_hash = models.CharField(unique=True, max_length=64,)
|
||||
file_hash = models.CharField(unique=True, max_length=64)
|
||||
file_name = models.CharField(max_length=150, blank=True)
|
||||
file = models.FileField(upload_to=get_upload_to_metadata, blank=True)
|
||||
file_mime = models.CharField(max_length=64, blank=True)
|
||||
file_ext = models.CharField(max_length=64, blank=True)
|
||||
date_added = models.DateTimeField(auto_now_add=True, editable=True)
|
||||
|
||||
class Meta:
|
||||
|
|
|
@ -1,16 +1,16 @@
|
|||
version: "3.8"
|
||||
|
||||
|
||||
services:
|
||||
django:
|
||||
build:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile
|
||||
args:
|
||||
- USER_ID=1000
|
||||
image: gallery-archivist:dev
|
||||
image: git.aroy-art.com/aroy/gallery-archivist:dev
|
||||
#container_name: django
|
||||
command: >
|
||||
sh -c "cd archivist
|
||||
command: >
|
||||
sh -c "cd archivist
|
||||
&& python manage.py runserver 0.0.0.0:8000"
|
||||
volumes:
|
||||
- .:/app/
|
||||
|
@ -27,10 +27,10 @@ services:
|
|||
|
||||
celery-worker:
|
||||
#build: .
|
||||
image: gallery-archivist:dev
|
||||
image: git.aroy-art.com/aroy/gallery-archivist:dev
|
||||
#container_name: celery_worker
|
||||
command: >
|
||||
sh -c "cd archivist
|
||||
command: >
|
||||
sh -c "cd archivist
|
||||
&& celery -A core worker -l INFO"
|
||||
volumes:
|
||||
- .:/app/
|
||||
|
@ -44,9 +44,9 @@ services:
|
|||
|
||||
celery-beat:
|
||||
#build: .
|
||||
image: gallery-archivist:dev
|
||||
command: >
|
||||
sh -c "cd archivist
|
||||
image: git.aroy-art.com/aroy/gallery-archivist:dev
|
||||
command: >
|
||||
sh -c "cd archivist
|
||||
&& celery -A core beat -l INFO"
|
||||
volumes:
|
||||
- .:/app/
|
||||
|
|
Loading…
Reference in a new issue