summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorAdam T. Carpenter <atc@53hor.net>2021-06-14 22:11:50 -0400
committerAdam T. Carpenter <atc@53hor.net>2021-06-14 22:11:50 -0400
commit3df910b359125d35ca71f4e9419b0bd41d56718c (patch)
tree5820c70c948223d4dcbb329cb05c25b94859a47a /README.md
parent7a21088226eb6be30e72ec99f695c70e93a76173 (diff)
downloadcarpentertutoring-3df910b359125d35ca71f4e9419b0bd41d56718c.tar.xz
carpentertutoring-3df910b359125d35ca71f4e9419b0bd41d56718c.zip
stripping bulma and cobalt; uneeded at this point
Diffstat (limited to 'README.md')
-rw-r--r--README.md47
1 files changed, 0 insertions, 47 deletions
diff --git a/README.md b/README.md
deleted file mode 100644
index 6230dd7..0000000
--- a/README.md
+++ /dev/null
@@ -1,47 +0,0 @@
-# Getting Started
-
-## Serving the site locally for development work
-
-In the root directory of the repository:
-
-```sh
-$ cobalt serve
-```
-
-## Building the site for produciton
-
-In the root directory of the repository:
-
-```sh
-$ cobalt build
-```
-
-## Updating pages and posts
-
-There is a git-hook on the origin server that rebuilds and publishes the site
-every time a push is made to the master branch. Site contributors need only make
-changes to the text of the pages and posts, publish them with `cobalt`, commit
-them, and then push them to master to see them go live.
-
-Below is a step-by-step guide
-
-### Adding a new post or page
-
-Enter the folder where you want new content to go. Tell `cobalt` to template a
-new post for you. Don't forget to provide a name for the post! You can verify
-the contents if you wish.
-
-```sh
-$ cd posts
-$ cobalt new "A New Tutoring Business"
-[info] Created new posts "posts/a-new-tutoring-business.md"
-$ cat a-new-tutoring-business.md
----
-title: A New Tutoring Business
-categories:
- - blog
-layout: post.liquid
-is_draft: true
----
-(Post text goes here)
-```