Technology Simplified!
A simple open source Blog to get people closer to technology.
See how to make changes and host them to website.
Clone the repository you forked to your computer:
$ git clone https://github.com/iamvkm/techaware.git
Make changes to the files you want. If you want to create a new post, here is command:
$ hugo new posts/enter-post-name.md
Enter content in post and make the draft: false
then run these commands to run the project in browser locally:
$ hugo
$ hugo server
Add the files in the local repository and stages them for commit:
git add .
Commit the tracked changes and prepares them to be pushed to a remote repository:
git commit -m "First commit"
Push everything to your forked repository:
git push origin master
Copyright © 2020 Vivek Mishra (@iamvvekm)
The website is released under the MIT License. Check the original project license for additional licensing information.