-
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
Showing
2 changed files
with
39 additions
and
1 deletion.
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 |
---|---|---|
@@ -1,2 +1,40 @@ | ||
# dokku-sentry | ||
Sentry on dokku | ||
|
||
## Prepare dokku | ||
|
||
Go to your dokku server and install following plugins: | ||
|
||
``` | ||
# Install official postgresql plugin | ||
sudo dokku plugin:install https://github.com/dokku/dokku-postgres.git postgres | ||
# Install official redis plugin | ||
sudo dokku plugin:install https://github.com/dokku/dokku-redis.git redis | ||
``` | ||
|
||
# Setup | ||
|
||
``` | ||
# Create dokku app | ||
ssh dokku@katana apps:create sentry | ||
# Create postgresql db and link it to the app | ||
ssh dokku@katana postgres:create sentry | ||
ssh dokku@katana postgres:link sentry sentry | ||
# Create redis instance and link it to the app | ||
ssh dokku@katana redis:create sentry | ||
ssh dokku@katana redis:link sentry sentry | ||
# Add remote dokku | ||
git remote add dokku dokku@katana:sentry | ||
# Deply | ||
git push dokku | ||
``` |
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