Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
C
cp_video_dokku
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Alexandr Dzehil
cp_video_dokku
Commits
1eb2ded7
Commit
1eb2ded7
authored
Mar 29, 2023
by
Ilya Simonov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add video field for upload video to s3
parent
031533ae
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
27 additions
and
0 deletions
+27
-0
admin.cpython-39.pyc
apps/core/__pycache__/admin.cpython-39.pyc
+0
-0
models.cpython-39.pyc
apps/core/__pycache__/models.cpython-39.pyc
+0
-0
admin.py
apps/core/admin.py
+1
-0
0006_video_s3_file_upload.py
apps/core/migrations/0006_video_s3_file_upload.py
+19
-0
models.py
apps/core/models.py
+7
-0
No files found.
apps/core/__pycache__/admin.cpython-39.pyc
View file @
1eb2ded7
No preview for this file type
apps/core/__pycache__/models.cpython-39.pyc
View file @
1eb2ded7
No preview for this file type
apps/core/admin.py
View file @
1eb2ded7
...
...
@@ -30,6 +30,7 @@ class VideoAdmin(admin.ModelAdmin):
'slug'
,
'status'
,
'description'
,
's3_file_upload'
,
'local_file'
,
's3_file'
,
'thumbnail'
,
...
...
apps/core/migrations/0006_video_s3_file_upload.py
0 → 100644
View file @
1eb2ded7
# Generated by Django 4.1.7 on 2023-03-29 12:39
from
django.db
import
migrations
,
models
import
storages.backends.s3boto3
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'core'
,
'0005_remove_playlist_videos'
),
]
operations
=
[
migrations
.
AddField
(
model_name
=
'video'
,
name
=
's3_file_upload'
,
field
=
models
.
FileField
(
blank
=
True
,
max_length
=
500
,
null
=
True
,
storage
=
storages
.
backends
.
s3boto3
.
S3Boto3Storage
(
bucket_name
=
'clutchpoints-videos'
),
upload_to
=
''
,
verbose_name
=
'AWS S3 file'
),
),
]
apps/core/models.py
View file @
1eb2ded7
...
...
@@ -111,6 +111,13 @@ class Video(BaseModel):
null
=
True
,
max_length
=
500
,
)
s3_file_upload
=
models
.
FileField
(
_
(
'AWS S3 file upload'
),
storage
=
S3Boto3Storage
(
bucket_name
=
'clutchpoints-videos'
),
blank
=
True
,
null
=
True
,
max_length
=
500
,
)
thumbnail
=
models
.
ImageField
(
_
(
'thumbnail'
),
upload_to
=
asset_upload
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment