diff options
| author | realtradam <[email protected]> | 2022-04-22 09:25:11 -0400 |
|---|---|---|
| committer | realtradam <[email protected]> | 2022-04-22 09:25:11 -0400 |
| commit | 0edf0acebb62f3b391a70726fbea8721791523b2 (patch) | |
| tree | 6fefb0d705eee399096c2ce1687d25509928e8a7 | |
| parent | 1cc253292e913dcb0b09a3cf00851b686e22c214 (diff) | |
| download | Justicar-master.tar.gz Justicar-master.zip | |
| -rw-r--r-- | README.mdown | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/README.mdown b/README.mdown index d0939e9..29c85bd 100644 --- a/README.mdown +++ b/README.mdown @@ -21,10 +21,18 @@ Using the CLI: $ justicar my_project # <- this generates a new project $ cd my_project $ bundle install # <- installs dependencies -$ rake build # <- generates the website -$ rake serve # <- locally host the project +$ bundle exec rake build # <- generates the website +$ bundle exec rake serve # <- locally host the project ``` +To deploy using something like [Cloudflare Pages](https://pages.cloudflare.com) use this as the build command: + +``` +bundle install && bundle exec rake build +``` + +And set the build output directory to `build` + ### How it works when your run `rake serve`: 1. Preprocess special files in Source Dir |
