We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
If you haven't already, please follow the SRCT initial setup instructions for Windows to install the prerequisite software.
Open Git Bash and navigate to your SRCT projects directory.
Unfortunately, Chocolatey doesn't work well with Ruby. Download from this link instead, and follow the setup instructions:
https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-2.6.5-1/rubyinstaller-devkit-2.6.5-1-x64.exe
After the setup, the DevKit installer will appear. Enter 1 and press enter to install the DevKit.
1
Bundler is the ruby program used to install ruby packages. To install it, simply run
gem install bundler
In your SRCT projects directory, run the following command to clone the Schedules codebase to your machine
git clone git@github.com:srct/srctweb.git
Run cd srctweb/srctweb to enter into the project directory.
cd srctweb/srctweb
To install the Ruby dependencies, run
bundle install
This will probably fail -- if it does, run rm Gemfile.lock and try again.
rm Gemfile.lock
Finally, run this to start the SRCTWeb development server:
bundle exec jekyll serve