-
Create a Repository:
- Go to GitHub and create a new repository named
trading-plan-web-app
or similar.
- Go to GitHub and create a new repository named
-
Push Your Code:
- Initialize a Git repository in your local project directory if you haven’t already:
git init
- Add the remote repository:
git remote add origin https://github.com/yourusername/trading-plan-web-app.git
- Add and commit your files:
git add . git commit -m "Initial commit"
- Push your changes:
git push -u origin master
- Initialize a Git repository in your local project directory if you haven’t already:
-
Enable GitHub Pages:
- Go to the repository on GitHub.
- Click on the "Settings" tab.
- Scroll down to the "GitHub Pages" section.
- Under "Source," select the
master
branch (ormain
branch if you named it that). - Click "Save."
-
Access Your Site:
- Your site will be available at
https://yourusername.github.io/trading-plan-web-app
.
- Your site will be available at
Feel free to replace placeholders like yourusername
and [email protected]
with your actual GitHub username and email.