├── .gitattributes ├── .gitignore ├── README.md ├── backend └── harness │ ├── harness │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── settings.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ └── wsgi.cpython-39.pyc │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ ├── jobs │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ └── models.cpython-39.pyc │ ├── admin.py │ ├── api │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── serializers.cpython-39.pyc │ │ │ ├── urls.cpython-39.pyc │ │ │ └── views.cpython-39.pyc │ │ ├── serializers.py │ │ ├── urls.py │ │ └── views.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py │ ├── manage.py │ └── requirements.txt └── frontend ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── App.test.js ├── components ├── JobDetail.js ├── JobForm.js ├── JobList.js └── SkillsList.js ├── constants.js ├── containers └── Home.js ├── index.css ├── index.js ├── logo.svg ├── reportWebVitals.js └── setupTests.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/README.md -------------------------------------------------------------------------------- /backend/harness/harness/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/harness/harness/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/backend/harness/harness/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /backend/harness/harness/__pycache__/settings.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/backend/harness/harness/__pycache__/settings.cpython-39.pyc -------------------------------------------------------------------------------- /backend/harness/harness/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/backend/harness/harness/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /backend/harness/harness/__pycache__/wsgi.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/backend/harness/harness/__pycache__/wsgi.cpython-39.pyc -------------------------------------------------------------------------------- /backend/harness/harness/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/backend/harness/harness/asgi.py -------------------------------------------------------------------------------- /backend/harness/harness/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/backend/harness/harness/settings.py -------------------------------------------------------------------------------- /backend/harness/harness/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/backend/harness/harness/urls.py -------------------------------------------------------------------------------- /backend/harness/harness/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/backend/harness/harness/wsgi.py -------------------------------------------------------------------------------- /backend/harness/jobs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/harness/jobs/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/backend/harness/jobs/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /backend/harness/jobs/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/backend/harness/jobs/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /backend/harness/jobs/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/backend/harness/jobs/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /backend/harness/jobs/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/backend/harness/jobs/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /backend/harness/jobs/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/backend/harness/jobs/admin.py -------------------------------------------------------------------------------- /backend/harness/jobs/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/harness/jobs/api/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/backend/harness/jobs/api/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /backend/harness/jobs/api/__pycache__/serializers.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/backend/harness/jobs/api/__pycache__/serializers.cpython-39.pyc -------------------------------------------------------------------------------- /backend/harness/jobs/api/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/backend/harness/jobs/api/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /backend/harness/jobs/api/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/backend/harness/jobs/api/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /backend/harness/jobs/api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/backend/harness/jobs/api/serializers.py -------------------------------------------------------------------------------- /backend/harness/jobs/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/backend/harness/jobs/api/urls.py -------------------------------------------------------------------------------- /backend/harness/jobs/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/backend/harness/jobs/api/views.py -------------------------------------------------------------------------------- /backend/harness/jobs/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/backend/harness/jobs/apps.py -------------------------------------------------------------------------------- /backend/harness/jobs/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/harness/jobs/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/backend/harness/jobs/models.py -------------------------------------------------------------------------------- /backend/harness/jobs/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/backend/harness/jobs/tests.py -------------------------------------------------------------------------------- /backend/harness/jobs/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /backend/harness/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/backend/harness/manage.py -------------------------------------------------------------------------------- /backend/harness/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/backend/harness/requirements.txt -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/frontend/public/logo192.png -------------------------------------------------------------------------------- /frontend/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/frontend/public/logo512.png -------------------------------------------------------------------------------- /frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/frontend/public/manifest.json -------------------------------------------------------------------------------- /frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/frontend/public/robots.txt -------------------------------------------------------------------------------- /frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/frontend/src/App.css -------------------------------------------------------------------------------- /frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/frontend/src/App.js -------------------------------------------------------------------------------- /frontend/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/frontend/src/App.test.js -------------------------------------------------------------------------------- /frontend/src/components/JobDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/frontend/src/components/JobDetail.js -------------------------------------------------------------------------------- /frontend/src/components/JobForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/frontend/src/components/JobForm.js -------------------------------------------------------------------------------- /frontend/src/components/JobList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/frontend/src/components/JobList.js -------------------------------------------------------------------------------- /frontend/src/components/SkillsList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/frontend/src/components/SkillsList.js -------------------------------------------------------------------------------- /frontend/src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/frontend/src/constants.js -------------------------------------------------------------------------------- /frontend/src/containers/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/frontend/src/containers/Home.js -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/frontend/src/index.js -------------------------------------------------------------------------------- /frontend/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/frontend/src/logo.svg -------------------------------------------------------------------------------- /frontend/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/frontend/src/reportWebVitals.js -------------------------------------------------------------------------------- /frontend/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbasikov/harness/HEAD/frontend/src/setupTests.js --------------------------------------------------------------------------------