This is a blog written by Arihant and ira about random stuff.
How to run locally and add new articles:
Prerequisites: You need Python and git installed.
-
Clone the repo
git clone https://github.com/Arihant25/inkvent.git cd inkvent
-
Create and activate a virtual environment
python -m venv venv .\venv\Scripts\activate
-
Install the required packages
pip install -r requirements.txt
-
Add new articles to the
\projects\pages
folder following the format given in thepage_template.md
file -
Run the
app.py
filepython projects/app.py
The static files for the GitHub pages are generated in the root folder of the project.
-
Commit and push the changes to the repo
git add . git commit -m "Commit message" git push