{"id":22439293,"url":"https://github.com/techstartucalgary/resumetrackerapp","last_synced_at":"2026-03-19T22:53:48.038Z","repository":{"id":119867042,"uuid":"365075012","full_name":"techstartucalgary/ResumeTrackerApp","owner":"techstartucalgary","description":"The repo for our Tech Start UCalgary project","archived":false,"fork":false,"pushed_at":"2023-03-07T09:28:09.000Z","size":52794,"stargazers_count":0,"open_issues_count":23,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-01T14:19:06.981Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/techstartucalgary.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-05-07T00:52:24.000Z","updated_at":"2021-05-07T22:56:26.000Z","dependencies_parsed_at":"2023-06-03T11:00:13.825Z","dependency_job_id":null,"html_url":"https://github.com/techstartucalgary/ResumeTrackerApp","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/techstartucalgary%2FResumeTrackerApp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/techstartucalgary%2FResumeTrackerApp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/techstartucalgary%2FResumeTrackerApp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/techstartucalgary%2FResumeTrackerApp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/techstartucalgary","download_url":"https://codeload.github.com/techstartucalgary/ResumeTrackerApp/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245815716,"owners_count":20676960,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-06T01:13:37.380Z","updated_at":"2026-01-06T16:50:53.676Z","avatar_url":"https://github.com/techstartucalgary.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"To do\n- Adding more checks for experiences and formatting\n- Cleaning up code, and improving modularity \n\n\n\n\n\nInstructions for setting up project on your computer:\nWARNING: Things you will need to have before starting:\nPython 3. To make sure you have it, run the following command to check:\n\n   $python3 -V to check\n\n(if you don't have it, get it here: https://www.python.org/download/releases/3.0/)\n\t\nPip: the default Python package installer. To make sure you have it, run the following command:\n\n   $ pip -V to check\n\n(if you don't have it, get it here: https://pypi.org/project/pip/)\n\t\t\t\t\n\t\n\nNodeJS: You'll need a version 6 or plus. To make sure you have it, run the command :\n   $ node -v\n(if you don't have it, get it here: https://nodejs.org/en/)\n\t\n\t\nnpm: You'll need a version 5.2 or plus. To make sure you have it, run the command :\n   $ npm -v\n(if you don't have it, get it here: https://www.npmjs.com/)\n\t\t\t\t\n\t\t\t\t\nYou will need bootstrap. Get it through the following command:\n   $ npm install bootstrap reactstrap axios\t\t\t\n\nYOU WILL NEED TO SET UP A VRITUAL ENVIRONMENT to set up Django. Read this link on setting that up:\nhttps://docs.python.org/3/tutorial/venv.html\n\t\n** OR **\n\t\t\t\t\nif you are a Mac/Linux user, you can set up the virtual environment (venv) by the following instructions:\n   $ sudo apt install -y python3 -venv\n\t\t\t\t\t\nThen in a folder of your choice: run the following commands: \n   $ mkdir environments \n   $ cd environments\n   $ python3 -m venv logrocket_env\n   $ source logrocket_env/bin/activate\n\t\t\t\t\t\nAfter running these four commands, you should be able to confirm that you are in your virtual env by the following output:\n   $ (logrocket_env) diogo@localhost: _\n\t\t\t\t\t\t\n\t\t\t\t\t\t\nNOW, once you are in your venv, you must get Django and the Django Rest API framework through the following commands:\n   $ pip install django djangorestframework django-cors-headers\n   $ pip install djangorestframework\n   $ python -m pip install django-cors-headers\n\t\t\t\t\t\n\t\t\t\nNow, you must also install PYDF2 in your venv. This will be necessary for reading the files in our back-end. \n   $ pip install PyPDF2\n(read about the library here: https://pypi.org/project/PyPDF2/)\n\n\n\n***********\nOnce all that is done, you can now begin to checkout the repository!\n*\n\t\t\t\t\t\n\t\t\nClone the repository either through the Desktop App or by entering the following lines on your command/terminal:\n   $ cd Documents (or whichever directory you choose)\n   $ git clone https://github.com/armeenrn/ResumeTrackerApp\n\n\nSet up the listener to the back-end by opening your terminal and entering the following instructions\nnote: YOU MUST BE IN YOUR VENV/VIRTUAL ENVIRONEMNT HERE. AND YOU MUST HAVE INSTALLED DJANGO, ITS MENTIONED DEPENDNCIES AND PYDF2 \n   $ cd Documents (or whichever directory you cloned the repository at.)\n   $ cd ResumeTrackerApp\n   $ cd WorkingProject\n   $ cd BackEnd\n   $ cd quotes\n   $ python3 manage.py runserver\n\t\nAt this point, your backend server should now be set up on your localhost:8000. \n\n\nNow, set up the front-end connection while leaving the back-end program RUNNING. \nYou can open a new terminal window (doesn't have to be in virtual env), and enter the following commmands. Remember that you must have React, Node, and all the other stuff installed.\n   $ cd Documents  (or whichever directory you cloned the repository at.)\n   $ cd ResumeTrackerApp\n   $ cd WorkingProject\n   $ cd FrontEnd\n   $ cd testServer\n   $ cd app\n   $ cd src\n   $ npm start\n\nAt this point, your browser should open to to localhost:3000.\nThere, you will see a basic interface for uploading file.\nTo test this out, upload a pdf file. \n \n\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftechstartucalgary%2Fresumetrackerapp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftechstartucalgary%2Fresumetrackerapp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftechstartucalgary%2Fresumetrackerapp/lists"}