Skip to content
This repository has been archived by the owner on May 11, 2023. It is now read-only.

Commit

Permalink
Add basic structure of the site.
Browse files Browse the repository at this point in the history
  • Loading branch information
randallknutson committed Jul 6, 2015
1 parent 2611545 commit 0499bdd
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 2 deletions.
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
source 'https://rubygems.org'
gem 'github-pages'
21 changes: 19 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,19 @@
# help.form.io
The help site for form.io
http://help.form.io documentation for form.io.
==============================================
This repository is used to generate the documentation section of the form.io website. It is generated using jekyll. Feel free to update and change it using pull requests.

Testing locally
---------------
You will need jekyll installed and running to generate a local copy for testing.

- ```ruby --version``` Ensure that you have at least version 2.0.0
- ```gem install bundler``` Install bundler if you don't already have it.
- ```bundle install``` Install this project's dependencies.

Running Jekyll
--------------
To run jekyll server locally, use the following commands.

- ```bundle exec jekyll serve``` to run the server.
- Open your browser and go to http://localhost:4000.

Empty file added _config.yml
Empty file.
10 changes: 10 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Form.io Help</title>
</head>
<body>
This is the help.form.io site.
</body>
</html>

0 comments on commit 0499bdd

Please sign in to comment.