Skip to content
Snippets Groups Projects
Commit 96567f5a authored by bbartels's avatar bbartels
Browse files

website: Add scripts to deploy website using sftp

Also make some minor appearence improvements
parent cab3e99b
No related branches found
No related tags found
No related merge requests found
.PHONY : build deploy
build:
jekyll build
chmod -R 744 _site/
deploy:
make build
./deploy
\ No newline at end of file
......@@ -25,3 +25,26 @@ See [docs](https://github.com/wemake-services/jekyll-theme-hackcss/blob/master/d
## License
GNU PGL 3. See [LICENSE](https://github.com/wemake-services/jekyll-theme-hackcss/blob/3cbe97b71a56a19eba386dd928e125b71e50c71e/LICENSE) for more information.
## Contributing
Create or edit a page in this directory. Use the `.md` extension.
When you are ready to build the site:
```
make build
```
If you want to run the site on localhost:
```
bundle exec jekyll serve
# http://localhost:4000
```
To deploy the website to our team url:
```
make deploy
```
\ No newline at end of file
......@@ -49,4 +49,8 @@ social:
exclude:
- Gemfile
- Gemfile.lock
- vendor
\ No newline at end of file
- vendor
- Makefile
- README.md
- LICENSE
- deploy
\ No newline at end of file
#!/bin/bash
HOST=may1716.sd.ece.iastate.edu
USERNAME=may1716
PASSWORD=6peprikt
cd _site || exit 1
lftp<<END_SCRIPT
open sftp://$HOST
user $USERNAME $PASSWORD
cd www
mirror -R
exit
END_SCRIPT
......@@ -2,12 +2,10 @@
layout: default
---
# MicroCART
### Microcontroller Controlled Aerial Robot Team
## Microcontroller Controlled Aerial Robot Team
**Senior Design Group**: may1716
## Overview
MicroCART is an ongoing senior design project focused on the
development of a quadcopter as a research platform for controls and
embedded systems. This year, our team is responsible for advancing the
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment