-
Fork & Clone pycontw-blog
For those who already know how to fork the repository, you can skip to the next step.
Click me
- Navigate to pycontw-blog and press the
Fork
button on the top right corner.
- Press
Create fork
- Copy the URL of the forked repo
- Navigate to pycontw-blog and press the
-
Clone the forked repo
git clone --recursive <YOUR_URL_HERE>
-
Use uv to setup the required version of Python.
- For MacOS / Linux users
curl -LsSf https://astral.sh/uv/install.sh | sh
- For Windows users
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
-
Setup Python and install dependencies
uv sync
-
Setup pre-commit hooks
This will check common errors when you do certain types of git commits.
uv run inv setup-pre-commit-hooks
-
Create Post
Run the following command to create a new post. Follow the steps to fill in all necessary information.
uv run inv create-post
Then open the newly created file under
content/posts
to finish editing the rest of the content body. The post is written in Markdown format. You can learn more about Markdown here. -
Test Locally
It's very IMPORTANT to test and run locally before committing anything. Run the following command to host the website locally.
uv run inv livereload
After executing the above command, open your browser and navigate to
http://localhost:8000/
. You should be able to see the new post you've just created. -
Commit
After all is ready, it's time to commit the modifications to the branch and push to the repository.
git add <your_file> # Use commitizen to do git commit. # Choose the "new post" type if you're adding a new article uv run cz commit # Push to the remote branch. git push origin $(git rev-parse --abbrev-ref HEAD)
-
Create a Pull Request
After pushing to the remote repository, go back to your GitHub page of your forked repository. There should be a very obvious pop up on top of the page like below.
Press that
Compare & pull request
hardly and go to the next page.Modify the content of the red rectangle 1 and 2. After editing, press the
Create pull request
button. That's it!!
Congratulations!! You've done all the jobs to post a new blog article. The next is taking a rest, drinking a cup of tea, and waiting for the maintainer to come for reviewing your PR ~
The post could be written in Markdown or reStructuredText format. The file should put under content/posts folder. Your filename should be the English title of your article. You'll have to translate it if there's no English title.
The following is a minimal example of an article.
-
In markdown
Title: My super post Date: 2010-12-03 10:20 Modified: 2010-12-05 19:30 Category: Python Tags: pelican, publishing Slug: my-super-post Authors: Alexis Metaireau, Conan Doyle Summary: Short version for index and feeds This is the content of my super blog post.
-
In reStructuredText
My super post ############## :date: 2010-10-03 10:20 :modified: 2010-10-04 18:40 :tags: that's, awesome :category: yeah :slug: my-super-post :authors: Alexis Metaireau, Conan Doyle :summary: Short version for index and feeds
Please read Writing content section in pelican documentation for format detail.
If you need to upload images, you'll need to create a directory for your posts in content/images/readme/.
TBD
Wei Lee [email protected] Yoyo [email protected]