* Started adding youtube API for fast indexing * Hooked youtube API into fast indexing * Added youtube_api_key to settings * Added youtube api key to settings UI * Added tests * Refactored the youtube api module * More refactor * Changed editing mode name from basic to standard * [WIP] started on copy changes * Updated copy
16 lines
255 B
YAML
16 lines
255 B
YAML
version: '3'
|
|
services:
|
|
phx:
|
|
build:
|
|
context: .
|
|
dockerfile: dev.Dockerfile
|
|
volumes:
|
|
- '.:/app'
|
|
ports:
|
|
- '4008:4008'
|
|
command:
|
|
- ./docker-run.dev.sh
|
|
stdin_open: true
|
|
tty: true
|
|
env_file:
|
|
- .env
|