This repo contain the contents served at the website http://ajitvpai.com/
This site was initially created by /u/Hdmoney inspired by a Reddit comment thread, with major development by /u/DistortoiseLP, and hosting provided by /u/Sunsparc in /r/pcmasterrace.
Awesome! Thank you for taking interest in contributing.
- Check the Issues page for anything that needs work.
- Fork a copy of the repository
- Write and commit your code to your copy of the repository
- Submit a pull request
You'll need NodeJS and gulp to make CSS changes to this project.
After forking the repo, cd into the scss
folder and run
$ npm install
Any changes to the HTML can be made in index.html
.
If you are editing CSS, you can run the gulp watch
command in the /scss
folder. Edit ./scss/src/styles.scss
to your liking.
If you want to see your changes on a local dev environment, you can use the python SimpleHTTPServer module. Run the following command in the root directory:
$ python -m SimpleHTTPServer
If you are using python 3 on a windows machine, please try using the code below if the code above does not work.
$ python -m http.server [port]
In your browser, head to localhost:8000
to see your changes.