Production Environment
Getting Started
Setting Up Git
To deploy ProShot to production, you need Git installed on your machine. Git is a version control system that lets you push your codebase to a remote repository and keep it in sync with your deployment platform.
Download Git if you do not have it already.
Creating a GitHub Repository
Head over to GitHub and create an account if you do not have one. Once signed in, create a new repository by navigating to the Repositories tab and clicking New. Keep the repository private for security.
Pushing Your Code
Open a terminal, navigate into your project folder, and run the following commands:
Initialize Git
git initPush to GitHub
git branch -M maingit remote add origin https://github.com/your-username/your-repo.gitgit push -u origin mainReplace the remote origin URL with the actual link to your GitHub repository.
Your code is now on GitHub and ready to be connected to a deployment platform.