Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
af0844d
chore: minor config updates
moop-moop Nov 1, 2024
1217a11
fix: seed to UW trials
moop-moop Nov 1, 2024
73df780
fix: some styling
moop-moop Nov 1, 2024
c103455
feat: add osixia/openldap to docker compose as default
moop-moop Nov 4, 2024
0d5cb34
fix: ldap, DB connection to supabase
moop-moop Dec 3, 2024
8b31905
feat: local LDAP for development
moop-moop Dec 3, 2024
b5da1ab
fix: local dev LDAP
moop-moop Jan 17, 2025
dd0b0e2
fix: db config default
moop-moop Jan 17, 2025
fa47369
fix
moop-moop Jan 17, 2025
dd1bd48
Merge branch 'nm/customize-uwhealth' of https://github.com/UWHealth/s…
moop-moop Jan 17, 2025
41ace93
wierd merge
moop-moop Jan 17, 2025
de2d8e4
feat: deploy and environments
moop-moop Jan 17, 2025
b9dcb91
fix: add gem 'ed25519'
moop-moop Jan 17, 2025
ebd1cf1
fix: add gem bcrypt_pbkdf
moop-moop Jan 17, 2025
747a2ee
fix: let's try the native capistrano
moop-moop Jan 21, 2025
d5050ad
fix: repo deploy not SCP
moop-moop Jan 22, 2025
27cb16d
fix: remove bundle flags
moop-moop Jan 22, 2025
986febe
fix: list syntax
moop-moop Jan 22, 2025
e6f1a46
fix: bundle settings
moop-moop Jan 22, 2025
5177c81
fix: remove --local
moop-moop Jan 22, 2025
494b1d5
fix: disable uglifier
moop-moop Jan 22, 2025
48093e1
fix: servers have auto locking scp
moop-moop Jan 24, 2025
476c756
feat: other env in secrets
moop-moop Jan 24, 2025
bfa1d59
remove attempt to fix permissions
moop-moop Jan 30, 2025
1c28bd3
feat: custom LDAP login
moop-moop Feb 12, 2025
6f2c0e1
fix: style, image, layouts
moop-moop Feb 12, 2025
03361b8
fix: LDAP module structure
moop-moop Feb 13, 2025
c318789
fix: images, icons
moop-moop Feb 14, 2025
e0ab093
fix: replace study default image
moop-moop Feb 14, 2025
9b94e46
feat: placeholder for custom analytics
moop-moop Feb 20, 2025
6901982
fix: ga_version as string
moop-moop Feb 20, 2025
33dd261
fix: disable broken uglifier in environment
moop-moop Feb 21, 2025
493786c
feat: dependabot limits to rails
moop-moop Feb 21, 2025
fe63abe
fix: exclude dependabot rails >=7.2.0 for now
moop-moop Feb 21, 2025
994a7fa
chore: patch update rails, rexml
moop-moop Feb 21, 2025
5258571
Merge pull request #4 from UWHealth/nm/gem-updates
moop-moop Feb 27, 2025
c570ae9
fix: ct.gov query syntax
moop-moop May 12, 2025
0c4ce3d
fix: Update ci.yml for docker compose v2
moop-moop May 12, 2025
57b739f
fix: docker permission for ldap
moop-moop May 14, 2025
5557761
fix: ldap-config
moop-moop May 14, 2025
098156d
fix: ldap
moop-moop May 14, 2025
82e2707
fix: db config
moop-moop May 14, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version: 2
updates:
- package-ecosystem: "bundler"
directory: "/"
schedule:
interval: "weekly"
ignore:
- dependency-name: "rails"
versions: [">= 7.2.0"]

14 changes: 12 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,17 @@ jobs:

steps:
- uses: actions/checkout@v2

- name: Set permissions for ldap-config
run: |
mkdir ./ldap-config
touch ./ldap-config/cn=config
chmod -R 755 ./ldap-config

- name: Prepare database
run: docker-compose run web rails db:setup
run: |
cp ./config/database.example.yml ./config/database.yml
docker compose run web rails db:setup

- name: Run tests
run: docker-compose run web rspec
run: docker compose run web rspec
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,6 @@
# Ignore application configuration
/config/application.yml
/.byebug_history
/ldap-config
/ldap-data
/config/database.yml
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
4 changes: 3 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
source 'https://rubygems.org'

# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
gem "rails", "~> 7.1.0"
gem "rails", "< 7.2.0"
gem "sprockets-rails"
gem "foreman"

Expand Down Expand Up @@ -32,6 +32,8 @@ gem 'active_storage_validations'
gem "font-awesome-sass", "~> 6.2.1"

group :development do
gem 'ed25519'
gem 'bcrypt_pbkdf'
gem 'puma'
gem 'listen'
gem 'spring'
Expand Down
Loading
Loading