An open API service indexing awesome lists of open source software.

https://github.com/zhangjingqiang/it-wiki


https://github.com/zhangjingqiang/it-wiki

rails ruby

Last synced: 2 months ago
JSON representation

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: '' })
```