hexo blog update
Update my hexo blog
Using the following command to create a new post
1 | hexo new "blog title" |
There will be a new markdown file created in the directory /source/_posts
Then edit this file.
After finishing edit, push it to github repo using the following command:
1 | git add . |
You need to go to hexo root directory to execute the above commands, otherwise there will be errors.
Using the following commands to start the server on the local machine to check if everything is right:
1 | hexo clean && hexo s |
The server will be started at http://localhost:4000
If your port 4000 is running something else, check it and kill it using commands:
1 | lsof -i :4000 #find the PID that is running on port 4000 |
Then the server shall be started without any problems.
Running this command to update the deployment on vercel:
1 | npm install hexo-theme-redefine@latest |
- Title: hexo blog update
- Author: StoneHoo
- Created at : 2023-12-19 12:05:31
- Updated at : 2024-11-06 19:20:06
- Link: https://www.ozak.ca/2023/12/19/hexo-blog-update/
- License: This work is licensed under CC BY-NC-SA 4.0.
Comments