├── .gitignore ├── Congratulations.png ├── Contributing-php.md ├── Contributing.md ├── LICENSE ├── README.md ├── backend.env ├── backend ├── nodejs │ ├── .gitignore │ ├── app.js │ ├── controllers │ │ └── upload.js │ ├── package-lock.json │ ├── package.json │ ├── setup.js │ ├── tests │ │ └── hello-world.test.js │ └── utils │ │ └── appwriteClient.js ├── php │ ├── README.md │ ├── api.sql │ ├── connect.php │ ├── helloworld.php │ ├── index.php │ └── setup.php ├── projectcodex.config └── python │ ├── .gitignore │ ├── README.md │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── codex │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ ├── home │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── management │ │ └── commands │ │ │ └── checkvirus.py │ ├── models.py │ ├── templates │ │ └── home │ │ │ ├── result.html │ │ │ └── upload_here.html │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── manage.py │ ├── models.py │ ├── requirements.txt │ ├── setup.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── code-of-conduct.md ├── code-submission-guidelines.md ├── frontend ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── index.html ├── package.json ├── postcss.config.js ├── projectcodex.config ├── public │ └── vite.svg ├── src │ ├── App.css │ ├── App.tsx │ ├── assets │ │ └── react.svg │ ├── index.css │ ├── main.tsx │ └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── yarn.lock └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env 3 | migrations 4 | __pycache__/ 5 | *.sqlite3 -------------------------------------------------------------------------------- /Congratulations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/Congratulations.png -------------------------------------------------------------------------------- /Contributing-php.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/Contributing-php.md -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/Contributing.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/README.md -------------------------------------------------------------------------------- /backend.env: -------------------------------------------------------------------------------- 1 | #Demo 2 | -------------------------------------------------------------------------------- /backend/nodejs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/backend/nodejs/.gitignore -------------------------------------------------------------------------------- /backend/nodejs/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/backend/nodejs/app.js -------------------------------------------------------------------------------- /backend/nodejs/controllers/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/backend/nodejs/controllers/upload.js -------------------------------------------------------------------------------- /backend/nodejs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/backend/nodejs/package-lock.json -------------------------------------------------------------------------------- /backend/nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/backend/nodejs/package.json -------------------------------------------------------------------------------- /backend/nodejs/setup.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/nodejs/tests/hello-world.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/backend/nodejs/tests/hello-world.test.js -------------------------------------------------------------------------------- /backend/nodejs/utils/appwriteClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/backend/nodejs/utils/appwriteClient.js -------------------------------------------------------------------------------- /backend/php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/backend/php/README.md -------------------------------------------------------------------------------- /backend/php/api.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/backend/php/api.sql -------------------------------------------------------------------------------- /backend/php/connect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/backend/php/connect.php -------------------------------------------------------------------------------- /backend/php/helloworld.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/backend/php/helloworld.php -------------------------------------------------------------------------------- /backend/php/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/backend/php/index.php -------------------------------------------------------------------------------- /backend/php/setup.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/projectcodex.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/python/.gitignore: -------------------------------------------------------------------------------- 1 | venv/ 2 | __pycache__/ 3 | *.sqlite3 4 | media/ -------------------------------------------------------------------------------- /backend/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/backend/python/README.md -------------------------------------------------------------------------------- /backend/python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/python/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /backend/python/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/backend/python/apps.py -------------------------------------------------------------------------------- /backend/python/codex/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/python/codex/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/backend/python/codex/asgi.py -------------------------------------------------------------------------------- /backend/python/codex/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/backend/python/codex/settings.py -------------------------------------------------------------------------------- /backend/python/codex/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/backend/python/codex/urls.py -------------------------------------------------------------------------------- /backend/python/codex/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/backend/python/codex/wsgi.py -------------------------------------------------------------------------------- /backend/python/home/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/python/home/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/backend/python/home/admin.py -------------------------------------------------------------------------------- /backend/python/home/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/backend/python/home/apps.py -------------------------------------------------------------------------------- /backend/python/home/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/backend/python/home/forms.py -------------------------------------------------------------------------------- /backend/python/home/management/commands/checkvirus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/backend/python/home/management/commands/checkvirus.py -------------------------------------------------------------------------------- /backend/python/home/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/backend/python/home/models.py -------------------------------------------------------------------------------- /backend/python/home/templates/home/result.html: -------------------------------------------------------------------------------- 1 |
SUCCESS
-------------------------------------------------------------------------------- /backend/python/home/templates/home/upload_here.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/backend/python/home/templates/home/upload_here.html -------------------------------------------------------------------------------- /backend/python/home/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/backend/python/home/tests.py -------------------------------------------------------------------------------- /backend/python/home/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/backend/python/home/urls.py -------------------------------------------------------------------------------- /backend/python/home/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/backend/python/home/views.py -------------------------------------------------------------------------------- /backend/python/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/backend/python/manage.py -------------------------------------------------------------------------------- /backend/python/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/backend/python/models.py -------------------------------------------------------------------------------- /backend/python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/backend/python/requirements.txt -------------------------------------------------------------------------------- /backend/python/setup.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/python/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/backend/python/tests.py -------------------------------------------------------------------------------- /backend/python/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/backend/python/urls.py -------------------------------------------------------------------------------- /backend/python/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/backend/python/views.py -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /code-submission-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/code-submission-guidelines.md -------------------------------------------------------------------------------- /frontend/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/frontend/.eslintrc.cjs -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/frontend/postcss.config.js -------------------------------------------------------------------------------- /frontend/projectcodex.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/frontend/public/vite.svg -------------------------------------------------------------------------------- /frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/frontend/src/App.css -------------------------------------------------------------------------------- /frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/frontend/src/App.tsx -------------------------------------------------------------------------------- /frontend/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/frontend/src/assets/react.svg -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afriverse-For-Tech/projectcodex/HEAD/frontend/src/main.tsx -------------------------------------------------------------------------------- /frontend/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | ///