Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test displaying the resume text #48 Changes made by Aaryamantriescode are: #53

Closed
wants to merge 3 commits into from

Conversation

AaryamanVyas
Copy link

@AaryamanVyas AaryamanVyas commented Mar 16, 2024

Add tests #25
Dynamic menu now shows "Edit resume" if resume exists.
Added tests for managing and displaying resumes.
Improved resume management and display functionality in the code.

 Dynamic menu now shows "Edit resume" if resume exists.
 Added tests for managing and displaying resumes.
 Improved resume management and display functionality in the code.
@AaryamanVyas
Copy link
Author

hi @nicobrenner I have tried my best and made something work I think😊. Go through the changes and let me know if anything was wrong !

@AaryamanVyas AaryamanVyas changed the title Changes made by Aaryamantriescode are: Add tests #25 Changes made by Aaryamantriescode are: Mar 16, 2024
@AaryamanVyas AaryamanVyas changed the title Add tests #25 Changes made by Aaryamantriescode are: Test displaying the resume text #48 Changes made by Aaryamantriescode are: Mar 16, 2024
@nicobrenner nicobrenner self-assigned this Mar 17, 2024
@nicobrenner
Copy link
Owner

Hi @aaryamantriescode thank you so much for creating this PR in response to the issue #48

I will now review the changes proposed in the PR and make comments about the changes

This is pretty normal and typical of reviewing code and managing a shared codebase

I will do my best to provide you with proper and useful feedback in a friendly way

Thank you for your time, contributions and understanding

Looking forward to keep building Command Jobs with you

Nico

@nicobrenner
Copy link
Owner

Ok, @aaryamantriescode just finished reviewing the PR. I really like it overall. I think it's going in a really good direction and would definitely like to incorporate most of the changes

I made some comments about where docker-related files should go in the project, and also would like some clarification about the Visual Studio configuration files for docker

Besides that, there are some minors adjustments for the test file and it should be good to go

Thank you so much, I look forward to seeing this PR added to the codebase

@AaryamanVyas
Copy link
Author

Hi @aaryamantriescode thank you so much for creating this PR in response to the issue #48

I will now review the changes proposed in the PR and make comments about the changes

This is pretty normal and typical of reviewing code and managing a shared codebase

I will do my best to provide you with proper and useful feedback in a friendly way

Thank you for your time, contributions and understanding

Looking forward to keep building Command Jobs with you

Nico

Thanks! I would love to build more with you 🤞I am learning a lot and like the project😍

@AaryamanVyas
Copy link
Author

AaryamanVyas commented Mar 17, 2024

Ok, @aaryamantriescode just finished reviewing the PR. I really like it overall. I think it's going in a really good direction and would definitely like to incorporate most of the changes

I made some comments about where docker-related files should go in the project, and also would like some clarification about the Visual Studio configuration files for docker

Besides that, there are some minors adjustments for the test file and it should be good to go

Thank you so much, I look forward to seeing this PR added to the codebase

Oh i didnt realize that VS code docker file was commited to the code , It reccomended me to download it and I thought it would be for my personal computer . can you help me out by explaining which files I need to change?

@nicobrenner
Copy link
Owner

Ok, @aaryamantriescode just finished reviewing the PR. I really like it overall. I think it's going in a really good direction and would definitely like to incorporate most of the changes
I made some comments about where docker-related files should go in the project, and also would like some clarification about the Visual Studio configuration files for docker
Besides that, there are some minors adjustments for the test file and it should be good to go
Thank you so much, I look forward to seeing this PR added to the codebase

Oh i didnt realize that VS code docker file was commited to the code , It reccomended me to download it and I thought it would be for my personal computer . can you help me out by explaining which files I need to change?

Looking into it, keep the .vscode folder with the two .json files, but move all the docker-related files to the docker/ folder. Then adjust the .json files within .vscode to make sure they reference the docker files in docker/. There should be no docker-related files in the root of the repo

@AaryamanVyas
Copy link
Author

AaryamanVyas commented Mar 17, 2024

Ok, @aaryamantriescode just finished reviewing the PR. I really like it overall. I think it's going in a really good direction and would definitely like to incorporate most of the changes
I made some comments about where docker-related files should go in the project, and also would like some clarification about the Visual Studio configuration files for docker
Besides that, there are some minors adjustments for the test file and it should be good to go
Thank you so much, I look forward to seeing this PR added to the codebase

Oh i didnt realize that VS code docker file was commited to the code , It reccomended me to download it and I thought it would be for my personal computer . can you help me out by explaining which files I need to change?

Looking into it, keep the .vscode folder with the two .json files, but move all the docker-related files to the docker/ folder. Then adjust the .json files within .vscode to make sure they reference the docker files in docker/. There should be no docker-related files in the root of the repo

I am not so sure why its telling me i deleted some files but everything should be in the correct files now

@nicobrenner
Copy link
Owner

Thank you @aaryamantriescode, I see you moved the Docker-related files to the docker/ folder, that's great

Now please:

  • make sure that the commands for building and running the app still work correctly with the new docker files (I just tried them and had to make some changes to get them working, also the docker-compose file needs some tweaking, it needs the tty and stdin_open lines as well as this volume - ../:/commandjobs)
  • remove the .vscode folder, and add and entry for it in .gitignore
  • remove the requirements.txt file in the root of the repo

@AaryamanVyas
Copy link
Author

AaryamanVyas commented Mar 18, 2024

Thank you @aaryamantriescode, I see you moved the Docker-related files to the docker/ folder, that's great

Now please:

  • make sure that the commands for building and running the app still work correctly with the new docker files (I just tried them and had to make some changes to get them working, also the docker-compose file needs some tweaking, it needs the tty and stdin_open lines as well as this volume - ../:/commandjobs)
  • remove the .vscode folder, and add and entry for it in .gitignore
  • remove the requirements.txt file in the root of the repo

Hi, I have a question. How can I just go back to the original code where I didn't mess up the files, so I can make the changes only to the menu and test menu file.

@nicobrenner
Copy link
Owner

Hi, I have a question. How can I just go back to the original code where I didn't mess up the files, so I can make the changes only to the menu and test menu file

It's all good, you didn't mess anything up, playing with code is how we learn how things work

Having said that, it might be faster to get a clean PR by starting from the current master branch of commanjobs

Probably the easiest way to do that, is to just git clone the repo (git clone [email protected]:nicobrenner/commandjobs.git) in a different folder, that way you'll get the code exactly as it is now in master

There you can add the changes you want

@AaryamanVyas
Copy link
Author

image_2024-03-18_080449331
yeah, I am so lost🥲

@nicobrenner
Copy link
Owner

Not sure what's going on, I think I had a similar issue the other day. Just tried it in my local and it worked though:

git clone [email protected]:nicobrenner/commandjobs.git commandjobs_new

image

@AaryamanVyas
Copy link
Author

Yeah, it still isn't working for me, I think the best option could be to revert all the commits and start over again.

@AaryamanVyas AaryamanVyas closed this by deleting the head repository Mar 18, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants