Skip to content

Commit

Permalink
Merge pull request #20 from fdocr/dep-bump
Browse files Browse the repository at this point in the history
Dependency bump
  • Loading branch information
fdocr authored May 5, 2023
2 parents 41072d9 + 1bf413b commit 1c98ed4
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1.1
ruby-version: 3.1.2
- name: Install dependencies
run: bundle install
- name: Run tests
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1.1
3.1.2
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Thank you for the interest in the project!

If you found a bug, have a feature request or need help (ask questions) [open a new issue](https://github.com/fdoxyz/udl-server/issues/new).
If you found a bug, have a feature request or need help (ask questions) [open a new issue](https://github.com/fdocr/udl-server/issues/new).

If you implemented a bugfix, a new feature, or updated the docs/tests feel free to __Submit a Pull Request__ so it can be reviewed and hopefully merged.

Expand Down
18 changes: 9 additions & 9 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
GEM
remote: https://rubygems.org/
specs:
activesupport (7.0.2.2)
activesupport (7.0.4.3)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
tzinfo (~> 2.0)
byebug (11.1.3)
concurrent-ruby (1.1.9)
concurrent-ruby (1.2.2)
diff-lcs (1.5.0)
dotenv (2.7.6)
i18n (1.10.0)
i18n (1.13.0)
concurrent-ruby (~> 1.0)
minitest (5.15.0)
minitest (5.18.0)
multi_json (1.15.0)
mustermann (1.1.1)
mustermann (1.1.2)
ruby2_keywords (~> 0.0.1)
nio4r (2.5.8)
puma (5.6.4)
nio4r (~> 2.0)
rack (2.2.3)
rack (2.2.7)
rack-attack (6.6.0)
rack (>= 1.0, < 3)
rack-protection (2.2.0)
Expand Down Expand Up @@ -59,8 +59,8 @@ GEM
tilt (~> 2.0)
sinatra-reloader (1.0)
sinatra-contrib
tilt (2.0.10)
tzinfo (2.0.4)
tilt (2.1.0)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)

PLATFORMS
Expand All @@ -81,7 +81,7 @@ DEPENDENCIES
sinatra-reloader (~> 1.0)

RUBY VERSION
ruby 3.1.1p18
ruby 3.1.2p20

BUNDLED WITH
2.3.8
18 changes: 10 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This is a server that bounces traffic to better leverage Deep Linking in mobile

The project's objectives are to be a simple, effective and lightweight tool that can help any website provide a seamless integration with their mobile apps.

The server is hosted at [`https://udl.visualcosita.com`](https://udl.visualcosita.com) open for public use, free of charge.
I used to host a server for public use (free of charge) but [due to _"reasons"_](https://github.com/fdocr/udl-server/issues/19#issuecomment-1536587313) it's not available anymore. You can [self host the project](#self-hosting) on most PaaS hosting providers quite easily. [Create an issue](https://github.com/fdocr/udl-server/issues/new) if you need help or have questions.

## How it works, and why?

Expand All @@ -18,16 +18,18 @@ These and other edge cases make for a less than ideal experience, if your object

## Self-hosting

Power users will likely need better reliability and scalability than a free service is able to offer. Self-hosting with Heroku (or similar SaaS platforms) is as easy as:
Power users will likely need better reliability and scalability than a free service is able to offer. Self-hosting with Heroku (or similar hosting solutions) is as easy as:

1. Fork this repository
1. Configure the app to automatically deploy to your Heroku account
- Using a [custom domain with Heroku](https://devcenter.heroku.com/articles/custom-domains) is very simple (i.e. `udl.your-domain.com`)
- Heroku's default subdomain works too (i.e. `my-app.herokuapp.com`)
1. Keep up with upstream (this repo) for future updates
- `git remote add upstream [email protected]:fdoxyz/udl-server.git`
- `git pull upstream main`
- `git push origin main`
- Use the **"Sync fork"** feature in your GitHub repo
- Or manually with git commands:
- `git remote add upstream [email protected]:fdocr/udl-server.git`
- `git pull upstream main`
- `git push origin main`
1. Configure `AASA_APP_ID` ENV variable to match your App Id
- Use the team ID or app ID prefix, followed by the bundle ID (joined by a dot `.`).
- This will allow your UDL Server to directly serve as a Universal Link target for your app and improve the experience
Expand Down Expand Up @@ -60,12 +62,12 @@ Some common details to keep in mind in case your redirects aren't working proper

## Contributing

Please check out the [Contributing Guide](https://github.com/fdoxyz/udl-server/blob/main/CONTRIBUTING.md).
Please check out the [Contributing Guide](https://github.com/fdocr/udl-server/blob/main/CONTRIBUTING.md).

## Code of Conduct

This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Code of Conduct](https://github.com/fdoxyz/udl-server/blob/main/CODE_OF_CONDUCT.md).
This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Code of Conduct](https://github.com/fdocr/udl-server/blob/main/CODE_OF_CONDUCT.md).

## License

Released under an [MIT License](https://github.com/fdoxyz/udl-server/blob/main/LICENSE.txt)
Released under an [MIT License](https://github.com/fdocr/udl-server/blob/main/LICENSE.txt)

0 comments on commit 1c98ed4

Please sign in to comment.