https://github.com/zhangjingqiang/it-wiki
https://github.com/zhangjingqiang/it-wiki
rails ruby
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/zhangjingqiang/it-wiki
- Owner: zhangjingqiang
- License: mit
- Created: 2017-04-23T03:02:50.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2018-11-25T02:02:38.000Z (over 7 years ago)
- Last Synced: 2025-01-11T01:44:21.152Z (over 1 year ago)
- Topics: rails, ruby
- Language: Ruby
- Homepage:
- Size: 59.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# IT Wiki
Awesome resources about IT.
## Getting Started
* Ruby version
2.3.3
* System dependencies
```
$ bundle install
```
* Configuration
```
$ export EMAIL=
$ export ABOUT_ME=
```
* Database creation
```
$ rails db:create
```
* Database initialization
```
$ rails db:migrate
```
* How to run the test suite
```
$ rspec
```
* Services (job queues, cache servers, search engines, etc.)
None
* Deployment instructions
```
$ heroku config:set EMAIL=
$ heroku config:set ABOUT_ME=
$ heroku run rails db:migrate
$ heroku run rails console
irb(main):001:0> Admin.create!({ email: '', password: '', password_confirmation: '' })
```