mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-05-22 03:11:52 +00:00
8 lines
234 B
Text
8 lines
234 B
Text
# Copy image files into media folder
|
|
mkdir -p media/original_images
|
|
cp demo/fixtures/images/* media/original_images/
|
|
|
|
# dj shortcut
|
|
if ! command -v dj; then
|
|
ln -s /app/.heroku/python/bin/django-admin /app/.heroku/python/bin/dj
|
|
fi
|