Skip to content

Commit

Permalink
Merge pull request #53 from realstorypro/rexml
Browse files Browse the repository at this point in the history
updating readme & gemfiles
  • Loading branch information
Leonid Medovyy committed May 20, 2023
2 parents 51edece + e83b7d1 commit c417cf5
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 6 deletions.
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ gem 'simple_scheduler'
gem 'sitemap_generator'
gem 'slack-notifier'
gem 'ruby-openai'
gem 'rexml'

# Database
gem 'hiredis'
Expand Down
11 changes: 6 additions & 5 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ GIT

GIT
remote: https://github.com/kaminari/kaminari.git
revision: 68fdf60cd6fa6552ac59f26dba3f71ff3c20ba52
revision: 2d45daca71bb96ae489427204e30e330c3bde1f7
branch: master
specs:
kaminari (1.2.2)
Expand Down Expand Up @@ -141,7 +141,7 @@ GEM
config (4.2.0)
deep_merge (~> 1.2, >= 1.2.1)
dry-validation (~> 1.0, >= 1.0.0)
connection_pool (2.4.0)
connection_pool (2.4.1)
crack (0.4.5)
rexml
crass (1.0.6)
Expand Down Expand Up @@ -275,7 +275,7 @@ GEM
rake
mini_mime (1.1.2)
minitest (5.18.0)
msgpack (1.7.0)
msgpack (1.7.1)
multi_xml (0.6.0)
multipart-post (2.3.0)
net-imap (0.3.4)
Expand All @@ -288,9 +288,9 @@ GEM
net-smtp (0.3.3)
net-protocol
nio4r (2.5.9)
nokogiri (1.15.0-arm64-darwin)
nokogiri (1.15.1-arm64-darwin)
racc (~> 1.4)
nokogiri (1.15.0-x86_64-linux)
nokogiri (1.15.1-x86_64-linux)
racc (~> 1.4)
orm_adapter (0.5.0)
parallel (1.23.0)
Expand Down Expand Up @@ -554,6 +554,7 @@ DEPENDENCIES
redcarpet
redis
reverse_markdown
rexml
rspec-rails
rspec_tap
rubocop
Expand Down
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,4 +154,17 @@ Run mailcatcher
mailcatcher
```

You can then view the emails sent by your application by navigating to [http://localhost:1080](http://localhost:1080) in your web browser.
You can then view the emails sent by your application by navigating to [http://localhost:1080](http://localhost:1080) in your web browser.

# Deploying to Heroku
Step 1. Create a new Heroku app
```bash
heroku create
```

Step 2. Deploy the customizations branch
```bash
git push heroku customizations:main
```

Step 3. Configure the environment variables

0 comments on commit c417cf5

Please sign in to comment.