Clone the project
git clone https://github.com/zuri-training/my-cms-pjt19.git
Go to the project directory
cd my-cms-pjt19
Run Locally
Create a virtual environment and install needed dependencies in it
py -m venv venv
Activate the virtual environment
venv/bin/activate
If you'll just be working on the front-end, the running locally section is optional. All your HTML
, CSS
, and JavaScript
files should go into the templates
directory.
Create a branch to make your changes to.
git branch <your-github-username_feature>
Switch into your branch
git checkout <your-github-username_feature>
Set Upstream branch
git push --set-upstream origin <your-github-username_feature>
Commit and push your changes to your branch.
git add . || git add --all || git add -A
git commit -m <commit-message>
git push
You can also just fork the repository and make your changes to that fork.
Create a pull request on the GitHub Repository. Learn How.
Request a review for your pull request from @philip ifeanyi
Your changes will be merged into the main
branch when they are approved by the reviewers.