Thin airfoil in a steady unseparated supersonic flow of air
Requirements: git
command-line utility, web-browser, npm
(if you want to publish changes to github.io
)
It's recommended to learn about git
: go http://git-scm.com/doc
$ git clone [email protected]:eakorolev/airfoil.git # or use your fork
$ cd airfoil
Just edit files :) You can check results by opening index.html
in web-browser
$ git add .
$ git commit
$ git push
- First time, you need to install npm-packages and maybe
grunt-cli
```shell
# npm install grunt-cli -g
$ npm install
```
- Build minimized files
```shell
$ grunt build
```
Now you can check built file: open `.grunt/build/index.html` in web-browser
- Publish files to
github.io
If minimized code works fine, it's time to publish it!
```shell
$ grunt gh-pages
```
You can use `grunt-gh-pages`'s params like `--gh-pages-tag 'v1.2.3' --gh-pages-message 'Tagging v1.2.3'`
- Open http://eakorolev.github.io/airfoil/ (
http://<your_github_login>.github.io/<your_repo_name>/
in common)