Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ryichk/honey_pot
Honeypot built with Rails.
https://github.com/ryichk/honey_pot
honeypot rails rails6 ruby ruby3
Last synced: 16 days ago
JSON representation
Honeypot built with Rails.
- Host: GitHub
- URL: https://github.com/ryichk/honey_pot
- Owner: ryichk
- Created: 2023-04-08T16:06:31.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-04-13T11:25:45.000Z (over 1 year ago)
- Last Synced: 2024-12-17T19:09:23.819Z (19 days ago)
- Topics: honeypot, rails, rails6, ruby, ruby3
- Language: Ruby
- Homepage:
- Size: 201 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# README
This README would normally document whatever steps are necessary to get the
application up and running.Things you may want to cover:
## Ruby version
- 3.2.1
## Database creation
```sh
bin/rails db:create
```## Database initialization
```sh
bin/rails db:migrate
```## How to run the test suite
```sh
bin/rails test
```## Deployment instructions
### .envの作成
```sh
cp .env.sample .env
```- DEPLOY_SERVER_IPにサーバーのIPアドレスを設定
- DEPLOY_SERVER_USERにサーバーのユーザ名を設定
- REPO_URLにGitHubなどのリポジトリURL(SSH)を設定
### Deployコマンド
```sh
bundle exec cap production deploy
```