Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
7 changes: 3 additions & 4 deletions .replit
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
run = "RAILS_ENV=development bundle exec rails server --binding=0.0.0.0"
run = "bundle exec rails server --binding=0.0.0.0"
hidden = [".bundle"]
entrypoint = "app/controllers/application_controller.rb"
modules = ["ruby-3.2"]
modules = ["ruby-3.2", "web", "nodejs-20", "nix"]

[env]
RACK_MINI_PROFILER = "off"
Expand All @@ -15,7 +14,7 @@ requiredFiles = [".replit", "replit.nix"]


[deployment]
run = "RAILS_ENV=production bundle exec rails server --binding=0.0.0.0"
run = ["sh", "-c", "bundle exec rails server --binding=0.0.0.0"]
deploymentTarget = "gce"

[[ports]]
Expand Down
2 changes: 1 addition & 1 deletion app/views/jits/_jit.html.erb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div id="<%= dom_id jit %>">
<p>
<strong>Content:</strong>
<%= jit.content %>
<%= jit.content.upcase %>
</p>

<p>
Expand Down
2 changes: 1 addition & 1 deletion app/views/pages/home.html.erb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<h1>Welcome to the Jitter Homepage </h1>

<p>Use a specific URL to get to the features you are looking for.</p>
<p>Use a specific URL to get to the features you are looking for. This is the best app you have ever used.</p>

<a href="/jits"> Go to the Jits</a>