├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── example ├── appspec.yml ├── config │ ├── celery │ └── celery.service └── scripts │ ├── build_image.sh │ ├── configure_daemon.sh │ ├── install_dependencies.sh │ ├── install_requirements.sh │ └── start_worker.sh ├── requirements.txt ├── run.py └── sandbox ├── Dockerfile ├── __init__.py ├── sandbox.py └── settings.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areebbeigh/codeinterview-sandbox/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areebbeigh/codeinterview-sandbox/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areebbeigh/codeinterview-sandbox/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areebbeigh/codeinterview-sandbox/HEAD/README.md -------------------------------------------------------------------------------- /example/appspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areebbeigh/codeinterview-sandbox/HEAD/example/appspec.yml -------------------------------------------------------------------------------- /example/config/celery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areebbeigh/codeinterview-sandbox/HEAD/example/config/celery -------------------------------------------------------------------------------- /example/config/celery.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areebbeigh/codeinterview-sandbox/HEAD/example/config/celery.service -------------------------------------------------------------------------------- /example/scripts/build_image.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | python3 /home/ec2-user/CodeInterviewSandbox/run.py -------------------------------------------------------------------------------- /example/scripts/configure_daemon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areebbeigh/codeinterview-sandbox/HEAD/example/scripts/configure_daemon.sh -------------------------------------------------------------------------------- /example/scripts/install_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areebbeigh/codeinterview-sandbox/HEAD/example/scripts/install_dependencies.sh -------------------------------------------------------------------------------- /example/scripts/install_requirements.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areebbeigh/codeinterview-sandbox/HEAD/example/scripts/install_requirements.sh -------------------------------------------------------------------------------- /example/scripts/start_worker.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | sudo systemctl restart celery.service -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areebbeigh/codeinterview-sandbox/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areebbeigh/codeinterview-sandbox/HEAD/run.py -------------------------------------------------------------------------------- /sandbox/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areebbeigh/codeinterview-sandbox/HEAD/sandbox/Dockerfile -------------------------------------------------------------------------------- /sandbox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areebbeigh/codeinterview-sandbox/HEAD/sandbox/__init__.py -------------------------------------------------------------------------------- /sandbox/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areebbeigh/codeinterview-sandbox/HEAD/sandbox/sandbox.py -------------------------------------------------------------------------------- /sandbox/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areebbeigh/codeinterview-sandbox/HEAD/sandbox/settings.py --------------------------------------------------------------------------------