-
Notifications
You must be signed in to change notification settings - Fork 0
Initial setup: Windows
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:
After the setup, the DevKit installer will appear. Enter 1
and press enter to install the DevKit.
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.
To install the Ruby dependencies, run
bundle install
This will probably fail -- if it does, run rm Gemfile.lock
and try again.
Finally, run this to start the SRCTWeb development server:
bundle exec jekyll serve