Merge pull request #2 from apache/chandan/skeleton

Try setting up a skeleton website
diff --git a/.asf.yaml b/.asf.yaml
index c9d2bd5..5a55265 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -21,3 +21,26 @@
 
   # Close branches when pull requests are merged
   del_branch_on_merge: true
+
+#
+# Configure Pelican
+#
+# See also:
+# * https://infra.apache.org/project-site.html
+# * https://infra.apache.org/asf-pelican-gettingstarted.html
+#
+pelican:
+  # TODO: Replace personal email with ??
+  notify: chandan@apache.org
+  autobuild: preview/*
+  target: asf-site
+  theme: theme/apache
+  whoami: main
+
+#
+# Staging website
+#
+staging:
+  profile: ~
+  whoami: asf-site
+  autostage: preview/*
diff --git a/content/images/logo.png b/content/images/logo.png
new file mode 100644
index 0000000..8bfb9a1
--- /dev/null
+++ b/content/images/logo.png
Binary files differ
diff --git a/content/pages/index.md b/content/pages/index.md
new file mode 100644
index 0000000..e0d8787
--- /dev/null
+++ b/content/pages/index.md
@@ -0,0 +1,5 @@
+Title: [WIP] Apache BuildStream website
+
+This website is under construction.
+
+The current website for this project can be found here: https://buildstream.build/
diff --git a/pelicanconf.yaml b/pelicanconf.yaml
new file mode 100644
index 0000000..56131c5
--- /dev/null
+++ b/pelicanconf.yaml
@@ -0,0 +1,21 @@
+# Cargo-culted from https://infra.apache.org/asf-pelican-config.html
+
+site:
+  name: Apache BuildStream
+  description: BuildStream, the software integration tool
+  domain: buildstream.apache.org
+  # TODO: Replace with BuildStream logo
+  logo: images/logo.png
+  repository: https://github.com/apache/buildstream-site
+  trademarks: Apache, the Apache feather logo, and BuildStream are trademarks or registered trademarks
+
+theme: theme/apache
+
+genid:
+  unsafe: yes
+  metadata: yes
+  elements: yes
+  headings_depth: 4
+  permalinks: yes
+  toc_depth: 4
+  tables: yes
diff --git a/requirements.txt b/requirements.txt
new file mode 100644
index 0000000..a736c05
--- /dev/null
+++ b/requirements.txt
@@ -0,0 +1,3 @@
+pelican
+beautifulsoup4
+requests