Skip to content

An open-source repository of maker projects and university of Ottawa Courses

License

Notifications You must be signed in to change notification settings

uOttawa-Makerspace/MakerSpaceRepo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MakerRepo

A website where makers can publish projects. An initiative by the University of Ottawa's Centre for Entrepreneurship and Engineering Design (CEED).

Actions Status

Build Status

New Developer Setup

Windows

  1. Open Powershell & Install WSL for Ubuntu

    wsl --install -d Ubuntu
  2. Follow the Debian-based Linux Distributions setup instructions using WSL.

  • Note: When cloning the repository in step 6, make sure to not clone it within the /mnt directory as this directory is shared with windows and may cause performance issues.

macOS

  1. Install Homebrew if not already installed

    /bin/bash -c "$(curl -fsSL https://github.com/raw/Homebrew/install/HEAD/install.sh)"
  2. Install PostgreSQL and libpq-dev with homebrew:

    brew install postgresql@14 libpq
  3. Start PostgreSQL & Access a PostgreSQL Shell

    brew services start postgresql@14
    psql -U postgres
  4. Run the following commands in a PostgreSQL shell to allow MakerRepo to connect:

    ALTER USER "postgres" WITH PASSWORD 'postgres';
    CREATE DATABASE makerspacerepo;
    exit
  5. Install rbenv and Ruby 3.1.2

    brew install rbenv
    rbenv install 3.1.2
  6. Install NVM and Node 18 LTS

    # Check to see if '.zshrc' is present in home directory
    cd ~
    ls -a
    
    # If '.zshrc' is not present, create .zshrc profile in home directory
    touch .zshrc
    
    # Install NVM
    curl -o- https://github.com/raw/nvm-sh/nvm/v0.39.3/install.sh | bash
    source .zshrc
    
    # Install Node 18 LTS
    nvm install 18 --lts
  7. Clone this repository and go into it:

    git clone https://github.com/uOttawa-Makerspace/MakerSpaceRepo.git
    cd MakerSpaceRepo
  8. Install gems:

    bundle install
  9. Create X.509 certificates for SAML:

    mkdir certs
    openssl req -x509 -newkey rsa:4096 -keyout certs/saml.key -out certs/saml.crt -days 365 -nodes
  10. Move the master credentials key into config (Ask for master.key file)

mv ~/Downloads/master.key config/master.key
  1. Configure Postgres for port 5433, ctrl+w to search for port, replace 5432 with 5433.
# Locate configuration file
psql -U postgres -c 'SHOW config_file'

# edit configuration file and change port variable
nano <your configuration file location>
  1. Set up the database:
rake db:setup
rake db:setup RAILS_ENV=test
  1. Run all tests to load clean fixtures into the database (You will fail one test because you do not have wkhtmltopdf, you may optionally install it if it is compatible with your distro.):
bundle exec rake
  1. Install yarn and yarn packages
npm install -g yarn
yarn install
  1. Start the Rails server:
foreman start -f Procfile.dev

Debian-based Linux distributions

  1. Install PostgreSQL and libpq-dev if they are not already installed:

    sudo apt-get install postgresql libpq-dev git curl
  2. Access a PostgreSQL Shell:

    sudo -i -u postgres psql
  3. Run the following commands in a PostgreSQL shell to allow MakerRepo to connect:

    ALTER USER "postgres" WITH PASSWORD 'postgres';
    CREATE DATABASE makerspacerepo;
    exit
  4. Install rbenv and Ruby 3.1.2:

    curl -fsSL https://github.com/rbenv/rbenv-installer/raw/HEAD/bin/rbenv-installer | bash
    echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc
    echo 'eval "$(rbenv init -)"' >> ~/.bashrc
    source ~/.bashrc
    rbenv install 3.1.2
  5. Install NVM and Node 18 LTS:

    curl -o- https://github.com/raw/nvm-sh/nvm/v0.39.3/install.sh | bash
    export NVM_DIR="$HOME/.nvm"
    [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
    [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"
    nvm install 18 --lts
  6. Clone this repository and go into it:

  • Note: For WSL users, make sure the repository isn't cloned within the /mntdirectory
    git clone https://github.com/uOttawa-Makerspace/MakerSpaceRepo.git
    cd MakerSpaceRepo
  1. Install gems:

    bundle install
  2. Create X.509 certificates for SAML:

    mkdir certs
    openssl req -x509 -newkey rsa:4096 -keyout certs/saml.key -out certs/saml.crt -days 365 -nodes
  3. Move the master credentials key into config (Ask for master.key file)

    mv ~/Downloads/master.key config/master.key
  4. Configure Postgres for port 5433, ctrl+w to search for port, replace 5432 with 5433.

sudo nano $(sudo -u postgres psql -c 'SHOW config_file' | sed -n '3p')
sudo systemctl restart postgresql
  1. Set up the database:
rake db:setup
rake db:setup RAILS_ENV=test
  1. Run all tests to load clean fixtures into the database (You will fail one test because you do not have wkhtmltopdf, you may optionally install it if it is compatible with your distro.):
bundle exec rake
  1. Install yarn and yarn packages
npm install -g yarn
yarn install
  1. Start the Rails server:
foreman start -f Procfile.dev

Note: You will want to change the remote origin from https to an ssh source, git@github.com:uOttawa-Makerspace/MakerSpaceRepo.git, in order to push.

Happy coding!