forked from discourse/discourse
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3c9cab5
commit ce02811
Showing
3 changed files
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,3 +65,6 @@ script/refresh_db | |
|
||
# temp directory for chef (used to configure vagrant VM) | ||
chef/tmp/* | ||
|
||
# .procfile | ||
.profile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
### | ||
# .procfile example | ||
## | ||
# Move this file to .procfile and change the values | ||
# below to suit your needs. | ||
### | ||
|
||
# This specifies how many of each task to run | ||
concurrency: web=2,sidekiq=1,clockwork=1 | ||
|
||
# Define the port range to use, must be in multiples of 1000 | ||
port: 3000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
web: bundle exec rails server -p $PORT | ||
sidekiq: bundle exec sidekiq -e $RAILS_ENV | ||
clockwork: bundle exec clockwork config/clock.rb |