-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added google verification, and added run instructions (#37)
- Loading branch information
Showing
3 changed files
with
43 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
## Running the site locally | ||
|
||
To run the site locally, you can just run | ||
|
||
```bash | ||
./run_site.sh | ||
``` | ||
|
||
It will print a message to the console for the address to view the website. | ||
|
||
### Requirements | ||
|
||
There are some installation requirements to be able to run it locally. | ||
|
||
1. Install ruby & build essentials | ||
|
||
```bash | ||
sudo apt update | ||
sudo apt install ruby ruby-dev build-essential | ||
``` | ||
|
||
2. Install bundler | ||
|
||
```bash | ||
sudo gem install bundler | ||
``` | ||
|
||
3. Install dependencies | ||
|
||
```bash | ||
bundle install | ||
``` | ||
|
||
- If you run into a permissions issue, you can try setting `export BUNDLE_PATH=~/.gems`. | ||
|
||
## To add a new section for navigation | ||
|
||
You are going to need to modified the files above to create a new changes such as delete section, add a new section. However, if you just need to do a simple redirect, you can just modified ``_data/navigation.yml``. | ||
|
||
1. ``_data/navigation.yml`` | ||
2. ``_config.yml`` | ||
3. Add gitignore on the directory ``.gitignore``, since we are going to pull this from the system |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
google-site-verification: googled556e8ebb4c45d9a.html |