This will help you figure out how to deploy and commit your project files before learning the commands.
Next your going to want to install an IDE.
What is an IDE?
An IDE stands for Integrated Development Environment. It’s a software application that provides comprehensive facilities to computer programmers for software development. An IDE typically includes the following components:
1. Source Code Editor: A text editor that helps you write and edit code with features like syntax highlighting, code completion, and code folding.
2. Compiler/Interpreter: A tool that translates your code from a high-level programming language to machine code or an intermediate language that can be executed by a computer.
3. Debugger: A tool that helps you test and debug your code by allowing you to step through your code, inspect variables, and set breakpoints.
4. Build Automation Tools: Tools that help automate repetitive tasks like compiling code, packaging binaries, and running tests.
5. Version Control: Some IDEs integrate with version control systems like Git, making it easier to manage changes to your code over time.
Examples of popular IDEs include Visual Studio Code, IntelliJ IDEA, PyCharm, Eclipse, and Xcode. IDEs are designed to increase developer productivity by offering a cohesive environment where you can write, test, and debug your code all in one place.
For the tutorials, I want you to download both, Visual Studio Code, and Cursor AI.