Corrections to older blogs

This commit is contained in:
Salar Rahmanian 2020-01-26 23:19:21 -08:00
parent 8fd8191115
commit beecb2f9e6
2 changed files with 127 additions and 98 deletions

View file

@ -33,7 +33,8 @@ tar -zxvf php.tar.gz .
**Update** *composer.json* **adding the location of the library** **Update** *composer.json* **adding the location of the library**
In the *autoload* section add the path *app/lib/getsatisfaction* In the *autoload* section add the path *app/lib/getsatisfaction*
```
```json
"autoload": { "autoload": {
"classmap": [ "classmap": [
"app/commands", "app/commands",

View file

@ -23,17 +23,23 @@ In this post I will discuss the steps I took to migrate my blog from [Pelican](h
I do all of my development on an Apple Macbook Pro so I used homebrew to install Hugo: I do all of my development on an Apple Macbook Pro so I used homebrew to install Hugo:
```brew install hugo``` ```bash
brew install hugo
```
## Creating my project ## Creating my project
Its up to you how you organize your project, but as I am a Go Language developer and Hugo is built using Go I have created a folder for this project here: Its up to you how you organize your project, but as I am a Go Language developer and Hugo is built using Go I have created a folder for this project here:
```$GOPATH/src/github.com/softinio/softinio.com``` ```bash
$GOPATH/src/github.com/softinio/softinio.com
```
change directory to this and in terminal run (for the rest of this blog I will assume you are in this directory): change directory to this and in terminal run (for the rest of this blog I will assume you are in this directory):
```git init``` ```bash
git init
```
This will create a git repository for your project. This will create a git repository for your project.
@ -41,7 +47,9 @@ This will create a git repository for your project.
To create your new Hugo site in terminal run: To create your new Hugo site in terminal run:
```hugo new site $GOPATH/src/github.com/softinio/softinio.com``` ```bash
hugo new site $GOPATH/src/github.com/softinio/softinio.com
```
This will create the skeleton for your new Hugo site. This will create the skeleton for your new Hugo site.
@ -51,31 +59,35 @@ First I headed over to the themes showcase for hugo here: [Hugo Themes](http://t
I chose [hyde-x](http://themes.gohugo.io/hyde-x/) for my blog. I chose [hyde-x](http://themes.gohugo.io/hyde-x/) for my blog.
Make a subdirectory called ```themes``` and change directory to it and clone the theme you have chosen there: Make a subdirectory called `themes` and change directory to it and clone the theme you have chosen there:
```git clone https://github.com/zyro/hyde-x``` ```bash
git clone https://github.com/zyro/hyde-x
```
Once this theme repo got cloned into my project I then removed its ```.git``` directory by changing directory into the themes root folder and removing it: Once this theme repo got cloned into my project I then removed its `.git` directory by changing directory into the themes root folder and removing it:
```bash
cd themes/hyde-x cd themes/hyde-x
rm -fr .git rm -fr .git
```
## Configuring your project and theme ## Configuring your project and theme
In the root of your project there is a file called ```config.toml``` that you need to update to configure your site. You can look at [my configuration](https://github.com/softinio/softinio.com/blob/master/config.toml) to get an idea of the things you can set. For your theme specific settings of course look at the github repo for your theme's readme for detailsi (e.g. for my chosen theme: [hyde-x documentation](https://github.com/zyro/hyde-x/blob/master/README.md)). In the root of your project there is a file called `config.toml` that you need to update to configure your site. You can look at [my configuration](https://github.com/softinio/softinio.com/blob/master/config.toml) to get an idea of the things you can set. For your theme specific settings of course look at the github repo for your theme's readme for detailsi (e.g. for my chosen theme: [hyde-x documentation](https://github.com/zyro/hyde-x/blob/master/README.md)).
## Content Types, Archetypes and Front Matter ## Content Types, Archetypes and Front Matter
I have decided to have two content types: I have decided to have two content types:
- ```post``` for my blog posts - `post` for my blog posts
- ```page``` for my sites static pages (like my about me page). - `page` for my sites static pages (like my about me page).
When creating any kind of content using Hugo you must provide some meta data about it. This meta data is known as ```front matter```. When creating any kind of content using Hugo you must provide some meta data about it. This meta data is known as `front matter`.
For example my ```front matter``` for this post is: For example my `front matter` for this post is:
```
+++ +++
categories = ["python", "golang"] categories = ["python", "golang"]
date = "2015-11-29T07:16:53-05:00" date = "2015-11-29T07:16:53-05:00"
@ -86,11 +98,13 @@ For example my ```front matter``` for this post is:
title = "Migrating from Pelican to Hugo" title = "Migrating from Pelican to Hugo"
+++ +++
```
You can get Hugo to automatically create the above front matter for you for each content type. These are called ```archetypes```. If you look at the ```archetypes``` subdirectory of my project there are two archetypes ```default.md``` and ```page.md```. Any content created that is of type ```page``` will have the contents of ```page.md``` added to its header. Any other content type will have the content of ```default.md``` added to its header. You can get Hugo to automatically create the above front matter for you for each content type. These are called `archetypes`. If you look at the `archetypes` subdirectory of my project there are two archetypes `default.md` and `page.md`. Any content created that is of type `page` will have the contents of `page.md` added to its header. Any other content type will have the content of `default.md` added to its header.
Looking at the content of ```page.md``` we have: Looking at the content of `page.md` we have:
```
+++ +++
title = "" title = ""
slug = "" slug = ""
@ -100,20 +114,21 @@ Looking at the content of ```page.md``` we have:
categories = [""] categories = [""]
tags = [""] tags = [""]
+++ +++
```
So this will be added to the top of every content of type page that I add. Of course I will have to edit this template for each content with that contents specific meta data. So this will be added to the top of every content of type page that I add. Of course I will have to edit this template for each content with that contents specific meta data.
The main difference between my two different content types is that the ```page.md``` content type has ```menu = "main"``` this tells hugo that this content is not a blog post and it should be added to the left column of my website below my name as a link. The main difference between my two different content types is that the `page.md` content type has `menu = "main"` this tells hugo that this content is not a blog post and it should be added to the left column of my website below my name as a link.
## Creating Content ## Creating Content
To create content, from the project root you call: To create content, from the project root you call:
```hugo new <content type>/<name of new content md file>``` `hugo new <content type>/<name of new content md file>`
So to create this page I did: So to create this page I did:
```hugo new post/migrating-from-pelican-to-hugo.md``` `hugo new post/migrating-from-pelican-to-hugo.md`
So to migrate my blog posts from pelican to hugo I used to above command to create a post with same file name as I had in pelican, copy and pasted the contents of each file from my pelican project to my hugo project. Note that of course I did not copy the front matter of my pelican posts across. Instead I updated the hugo front matter with the same meta data as I had in pelican manually. I repeated this process for my pages too. So to migrate my blog posts from pelican to hugo I used to above command to create a post with same file name as I had in pelican, copy and pasted the contents of each file from my pelican project to my hugo project. Note that of course I did not copy the front matter of my pelican posts across. Instead I updated the hugo front matter with the same meta data as I had in pelican manually. I repeated this process for my pages too.
@ -121,23 +136,23 @@ So to migrate my blog posts from pelican to hugo I used to above command to crea
My permalinks structure for my old pelican based blog was: My permalinks structure for my old pelican based blog was:
```/blog/<slug>``` `/blog/<slug>`
meaning to access my a post it would have URL like: meaning to access my a post it would have URL like:
```http://www.softinio.com/blog/<slug>``` `http://www.softinio.com/blog/<slug>`
In hugo I have changed this to: In hugo I have changed this to:
```/post/<slug>``` `/post/<slug>`
meaning to access my a post it would have URL like: meaning to access my a post it would have URL like:
```http://www.softinio.com/post/<slug>``` `http://www.softinio.com/post/<slug>`
I could have kept it the same so that the URL to my existing content moving from Pelican to Hugo would not change, but I prefered to move forward with it this way. This is a personal choice of course. I could have kept it the same so that the URL to my existing content moving from Pelican to Hugo would not change, but I prefered to move forward with it this way. This is a personal choice of course.
If you have a look at my ```config.toml``` file you will see under the ```permalinks``` section how I have defined my permalinks. If you have a look at my `config.toml` file you will see under the `permalinks` section how I have defined my permalinks.
For more details on permalinks have a look at the [Hugo documentation on permalinks](http://gohugo.io/extras/permalinks/). For more details on permalinks have a look at the [Hugo documentation on permalinks](http://gohugo.io/extras/permalinks/).
@ -147,28 +162,37 @@ By this stage I had migrated all my content to hugo and had setup my site. All t
To add github repo I created as my remote: To add github repo I created as my remote:
```bash
git remote add origin git@github.com:softinio/softinio.com.git git remote add origin git@github.com:softinio/softinio.com.git
```
Commit All My work: Commit All My work:
git commit -am "Initital version of my site"``` ```bash
git commit -am "Initital version of my site"`
```
Merge the remote with my local: Merge the remote with my local:
```bash
git pull origin master git pull origin master
```
Pushed my code to GitHub: Pushed my code to GitHub:
```bash
git push origin master git push origin master
```
## Creating your Amazon AWS S3 bucket ## Creating your Amazon AWS S3 bucket
I already had an account with [Amazon AWS](http://aws.amazon.com/) so I signed in and created a S3 bucket: I already had an account with [Amazon AWS](http://aws.amazon.com/) so I signed in and created a S3 bucket:
- The bucket I named ```www.softinio.com``` and set it up for static website hosting by following this [Amazon Document](https://docs.aws.amazon.com/AmazonS3/latest/dev/HowDoIWebsiteConfiguration.html) - The bucket I named `www.softinio.com` and set it up for static website hosting by following this [Amazon Document](https://docs.aws.amazon.com/AmazonS3/latest/dev/HowDoIWebsiteConfiguration.html)
When I created the ```www.softinio.com``` bucket I also clicked ```properties``` and selected the ```permissions``` section. Here I edited the bucket policy and added: When I created the `www.softinio.com` bucket I also clicked `properties` and selected the `permissions` section. Here I edited the bucket policy and added:
```json
{ {
"Version": "2012-10-17", "Version": "2012-10-17",
"Statement": [ "Statement": [
@ -181,8 +205,9 @@ When I created the ```www.softinio.com``` bucket I also clicked ```properties```
} }
] ]
} }
```
Of course replace ```<domain/bucket name>``` with your actual bucket name which for me would be ```www.softinio.com```. Of course replace `<domain/bucket name>` with your actual bucket name which for me would be `www.softinio.com`.
## Moving my domains DNS management to Amazon AWS Route 53 ## Moving my domains DNS management to Amazon AWS Route 53
@ -192,12 +217,13 @@ I followed the steps in this [Amazon document](http://docs.aws.amazon.com/Route5
## Creating a User on Amazon AWS to use for deployment ## Creating a User on Amazon AWS to use for deployment
We need to create a user on Amazon AWS to use for deployments to the S3 bucket we created. To do this log into your Amazon AWS console and select ```Identity & Access Management```, then select ```Users``` and then select ```Create New Users```. We need to create a user on Amazon AWS to use for deployments to the S3 bucket we created. To do this log into your Amazon AWS console and select `Identity & Access Management`, then select `Users` and then select `Create New Users`.
Give the new user a name and make note of the access keys for this user that gets generated for you. Give the new user a name and make note of the access keys for this user that gets generated for you.
You will need to create a policy and attach to this user. Here is a sample policy you can use: You will need to create a policy and attach to this user. Here is a sample policy you can use:
```json
{ {
"Version": "2012-10-17", "Version": "2012-10-17",
"Statement": [ "Statement": [
@ -211,8 +237,9 @@ You will need to create a policy and attach to this user. Here is a sample polic
} }
] ]
} }
```
Of course replace ```<domain/bucket name>``` with what you actually called your Amazon S3 bucket name. Of course replace `<domain/bucket name>` with what you actually called your Amazon S3 bucket name.
## Automate your deployments with Wercker ## Automate your deployments with Wercker
@ -228,15 +255,16 @@ I followed these steps:
- Click Create to start adding your application - Click Create to start adding your application
- Select your GitHub Repository - Select your GitHub Repository
- Select the repository owner - Select the repository owner
- Configure Access (I chose: ```werker will checkout the code without using an ssh key```) - Configure Access (I chose: `werker will checkout the code without using an ssh key`)
- I chose not to have my app public - I chose not to have my app public
Once the app was created Wercker gave me the option to trigger a build. Decline it as we have not finished creating our app. Once the app was created Wercker gave me the option to trigger a build. Decline it as we have not finished creating our app.
## Create and add wercker.yml file ## Create and add wercker.yml file
In the root of my project I added a new ```wercker.yml``` file for my configuration of wercker: In the root of my project I added a new `wercker.yml` file for my configuration of wercker:
```yaml
box: debian box: debian
build: build:
steps: steps:
@ -253,17 +281,17 @@ In the root of my project I added a new ```wercker.yml``` file for my configurat
bucket-url: $AWS_BUCKET_URL bucket-url: $AWS_BUCKET_URL
key-id: $AWS_ACCESS_KEY_ID key-id: $AWS_ACCESS_KEY_ID
key-secret: $AWS_SECRET_ACCESS_KEY key-secret: $AWS_SECRET_ACCESS_KEY
```
## Adding environment variables for deployment ## Adding environment variables for deployment
Log back into wercker and go to your application settings. Select ```Targets``` and in there add 3 new variables to your deploy pipeline: Log back into wercker and go to your application settings. Select `Targets` and in there add 3 new variables to your deploy pipeline:
- AWS_ACCESS_KEY_ID - As provided for the user you created on Amazon AWS - AWS_ACCESS_KEY_ID - As provided for the user you created on Amazon AWS
- AWS_SECRET_ACCESS_KEY - As provided for the user you created on AWS - AWS_SECRET_ACCESS_KEY - As provided for the user you created on AWS
- AWS_BUCKET_URL - set this to ```s3://yourdomain.com``` (Note: having the ```s3://``` in front of your domain is very important!) - AWS_BUCKET_URL - set this to `s3://yourdomain.com` (Note: having the `s3://` in front of your domain is very important!)
## Your first deployment ## Your first deployment