Ver Fonte

second initial commit - haha

Your Name há 8 meses atrás
pai
commit
9df420c07e

+ 47 - 1
README.md

@@ -1,3 +1,49 @@
 # kyleguy
+example static page setup
+---
 
-example static page setup
+## repository setup
+
+**Configure the your domain registrar's DNS**
+
+This assumes you are using the DNS provided by your domain registrar.  Some common registrars are Cloudflare, SquareSpace, Wix, GoDaddy, Gandi, Namecheap, and [others](https://www.icann.org/en/accredited-registrars).  FYI, I listed some bad and some good ones, not a review just blasting.
+
+Not necessarily the first thing that needs to be accomplished, but if it is done early time can be saved while the DNS provider tries to spread the word out to the internet about your domain.  Add a record for the domain name.  In this example we add `kyleguy.rome7.com`, you only add a record for the subdomain part, `kyleguy`.  You are the decision maker for what domain points to this site.  I did not want a site at `rome7.com` so I am creating a subdomain:
+
+![add-dns-record](images/registrar-example-square.png)
+
+My website will be hosted by pebbleguy.com.
+
+
+**Create a git repository**
+
+Login to your account on `git.pebbleguy.com`.  Click the add repository button:
+
+![click-add-repo](images/add-repository-button.png)
+
+Then fill out the form.  We will use some predefined options to template our gitignore file and have Gogs initialize the repository for us.
+
+![new-repo-settings](images/new-repository.png)
+
+This is what the mostly empty repository looks like if you were successful:
+
+![repo-created-screenshot](images/repository-created.png)
+
+
+**Get a copy of the repository on your computer**
+
+Open `powershell` or `cmd`:
+
+![run-powershell](images/run-powershell.png)
+
+You will clone the repository to your desktop, type these commands into the `powershell` terminal.  The output should match closely with the example.  You will want to replace the clone url with your own repository `https://git.pebbleguy.com/{{your_gogs_account_name}}/{{repository_name}}`
+```
+cd desktop
+git clone https://git.pebbleguy.com/kyle/kyleguy
+```
+
+![clone-repository](images/clone-project-to-desktop.png)
+
+With the repository cloned to your desktop successfully, you should be able to use the `Windows file explorer` to view the files:
+
+![file-explorer](images/file-explorer.png)

BIN
images/add-repository-button.png


BIN
images/clone-project-to-desktop.png


BIN
images/file-explorer.png


BIN
images/new-repository.png


BIN
images/registrar-example-square.png


BIN
images/repository-created.png


BIN
images/run-powershell.png