{"id":34342058,"url":"https://github.com/sesa-uottawa/uottawasesa","last_synced_at":"2025-12-17T22:51:51.381Z","repository":{"id":14739664,"uuid":"17460620","full_name":"sesa-uottawa/uottawasesa","owner":"sesa-uottawa","description":"University of Ottawa - Software Engineering Student Association","archived":false,"fork":false,"pushed_at":"2018-10-20T21:11:46.000Z","size":93539,"stargazers_count":11,"open_issues_count":5,"forks_count":21,"subscribers_count":8,"default_branch":"master","last_synced_at":"2024-04-17T00:30:06.979Z","etag":null,"topics":["engineering","ottawa","react","ror","ruby-on-rails","student-club","student-project","uottawa"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sesa-uottawa.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-03-06T00:31:21.000Z","updated_at":"2021-12-21T21:19:54.000Z","dependencies_parsed_at":"2022-09-21T08:33:47.467Z","dependency_job_id":null,"html_url":"https://github.com/sesa-uottawa/uottawasesa","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sesa-uottawa/uottawasesa","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sesa-uottawa%2Fuottawasesa","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sesa-uottawa%2Fuottawasesa/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sesa-uottawa%2Fuottawasesa/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sesa-uottawa%2Fuottawasesa/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sesa-uottawa","download_url":"https://codeload.github.com/sesa-uottawa/uottawasesa/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sesa-uottawa%2Fuottawasesa/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":27787547,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-12-17T02:00:08.291Z","response_time":55,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["engineering","ottawa","react","ror","ruby-on-rails","student-club","student-project","uottawa"],"created_at":"2025-12-17T22:51:50.736Z","updated_at":"2025-12-17T22:51:51.376Z","avatar_url":"https://github.com/sesa-uottawa.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"Software Engineering Student Association (SESA) | L'Association des Étudiants en Génie Logiciel (AÉGL)\n===\n# Welcome\nThis is the repo for the SESA website.\nWant to know more about SESA? Go check our [*home page*](http://sesa-uottawa.ca/)\n\n# Install guide\nThis project works perfectly with ruby 2.3.3 and rails 5.0.1, you will need to use these specific versions.\n\n\n## First step :  install rbenv (ruby version manager)\n\n### For Windows\nWindows 10, you can use [*Cygwin*](https://cygwin.com/) or [*Bash on Ubuntu on Windows*](https://msdn.microsoft.com/en-us/commandline/wsl/install_guide) to install rbenv.\n\nThen you just have to run the following commands (from the Linux [*tutorial*](https://gorails.com/setup/ubuntu/17.04) )\n\n\n### For linux\n\n```\nsudo apt-get update\n\nsudo apt-get install git-core curl zlib1g-dev build-essential libssl1.0-dev libreadline-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt1-dev libcurl4-openssl-dev software-properties-common libffi-dev nodejs\n\ncd\ngit clone https://github.com/rbenv/rbenv.git ~/.rbenv\necho 'export PATH=\"$HOME/.rbenv/bin:$PATH\"' \u003e\u003e ~/.bashrc\necho 'eval \"$(rbenv init -)\"' \u003e\u003e ~/.bashrc\nexec $SHELL\n\ngit clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build\necho 'export PATH=\"$HOME/.rbenv/plugins/ruby-build/bin:$PATH\"' \u003e\u003e ~/.bashrc\nexec $SHELL\n\nrbenv install 2.3.3\n\nrbenv global 2.3.3\n\nruby -v\n\ngem install bundler\n\ngem install rails -v 5.0.1\n\ncd [path to this project]\n\nbundler install\n```\n\n### For mac\n\nFirst install Homebrew if it's not already installed\n```\n$ ruby -e \"$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)\"\n```\nInstall rbenv\n```\n$ brew install rbenv ruby-build\n```\nOnce done, add to your bash profile\n```\n$ echo 'eval \"$(rbenv init -)\"' \u003e\u003e ~/.bash_profile\n```\nApply to your terminal session.\n```\n$ source ~/.bash_profile\n```\nInstall ruby\n```\nrbenv install 2.3.3\n\nrbenv global 2.3.3\n\nruby -v\n\ngem install bundler\n\ngem install rails -v 5.0.1\n```\nInstall Gems\n```\ncd [path to this project]\nbundler install\n```\n## Second step :  install postgresql\nYou will need to install postgresql and update the /config/database.yml to connect properly to the database.\n\n## Final step : Launch the server\nJust start the server with rails from the root of the project.\n`rails server`\n# Original by\n\n* [Menelik Tucker](http://meneliktucker.me/)\n* [Katarina Drobnjakovic](http://katarina.rocks/)\n\n# Maintained by\n\n* [Everyone](https://github.com/sesa-uottawa/uottawasesa/graphs/contributors)\n\nSee an error? Feel free to submit a pull request, open up an issue, or post on our [facebook page](https://www.facebook.com/groups/uOttawaSESA/).\n\nLive,\nLaugh,\nLearn.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsesa-uottawa%2Fuottawasesa","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsesa-uottawa%2Fuottawasesa","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsesa-uottawa%2Fuottawasesa/lists"}