- Ali Moussa
- Fayez El Masry
- Marwan Salem
- Mohamed Hisham Gaballah
- Zeyad Hossam Habib
We researched the current state of art in video super-resolution and created a desktop application to deploy our model.
- React
- Typescript
- Tailwindcss
- Electron
- Django
- Some Flask
- AWS EKS, you can use the files in the
eks
directory - Building docker image and pushing to AWS ECR using github actions in .github/workflows/ecr.yaml
- Create a .env file similar to this
DATABASE_NAME=vsr
DATABASE_USER=postgres
DATABASE_PASSWORD=changeme
DATABASE_HOST=localhost
DATABASE_PORT=5432
SPACES_KEY=foo
SPACES_SECRET=foo
place this at backend/videoservice/.env
- Create a .vscode folder and add the following do this first:
pip3 install black pylint pylint-django
then
// .vscode/settings.json
{
"python.pythonPath": "./venv/bin/python",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
"python.terminal.activateEnvironment": true,
"python.linting.enabled": true,
"python.linting.pylintPath": "pylint",
"python.linting.pylintEnabled": true,
"python.linting.pylintUseMinimalCheckers": false,
"python.linting.lintOnSave": true,
"python.linting.pylintArgs": [
"--disable=C0111", // missing docstring
"--django-settings-module=videoservice.settings",
"--load-plugins",
"pylint_django",
],
"python.formatting.provider": "black",
}
For formatting and linting, 3shan el code yefdal nedif
- For formatting the entire directory 3shan el spacing wel nadafa:
black .
// .vscode/launch.json
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Django",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/backend/manage.py",
"args": [
"runserver"
],
"django": true
}
]
}
pip install python-magic-bin