Heya there, this is ACM Teach LA's website! It's goal is to give Teach LA a more formal online presence, and to create a one-stop shop for prospective tutors and schools to get more information about us!
This website is built with Jekyll, with some component implementations taken from ACM's main website (conforming to ACM Design's Style Guide). We build and test this website with GitHub Actions, and deploy it on Netlify. We will be running on ruby 3.2.5 and jekyll 4.3.3
To get a copy of this website running locally on your machine, you'll need Ruby, a copy of this repo, and access to your system's shell/terminal.
Note: we recommend using rvm instead of your system ruby; it makes life easier :smile:!
First, let's install Bundler, a gem environment manager for ruby. Type this anywhere in your shell:
$ gem install bundler
...
Then, let's clone our project with git, and install our dependencies!
$ git clone https://github.com/uclaacm/teach-la-website.git
$ cd teach-la-website
$ bundle
...
This should install all of our RubyGems dependencies! Note that we've committed a Gemfile.lock
, so you should get a working set of gems.
Finally, run:
$ bundle exec jekyll serve
Configuration file: /Users/matt/code/tla/static/_config.yml
Source: /Users/matt/code/tla/static
Destination: /Users/matt/code/tla/static/_site
Incremental build: disabled. Enable with --incremental
Generating...
done in 0.17 seconds.
Auto-regeneration: enabled for '/Users/matt/code/tla/static'
Server address: http://127.0.0.1:4000/
Server running... press ctrl-c to stop.
If these steps do not work for you, you may also try doing this:
Visit whatever follows the server address line in your browser, which is usually http://127.0.0.1:4000/.
If you run into any issues, please let us know on our issues tracker!
Want to make a change to the website? Great! Here are the steps:
master
is a protected branch, so you cannot push to it.git checkout
.bundle exec jekyll build
. If there are any errors, our CI/CD service will reject your build.master
. Congratulations! If you'd like, it's now safe to delete your branch/fork.
brew install rbenv
brew install ruby-build
rbenv init
rbenv install 3.2.5
rbenv global 3.2.4
gem update jekyll
gem update bundler
bundle install
bundle update
** note: may need to sudo if you do not have permission I hope this helps