Skip to content

Instantly share code, notes, and snippets.

View yshmarov's full-sized avatar
🇺🇦

Yaro Shm yshmarov

🇺🇦
View GitHub Profile
@yshmarov
yshmarov / bootstrap_card.html
Created January 21, 2021 13:47
bootstrap card syling
<div class="card shadow">
<div class="card-header">
<h2>
</h2>
</div>
<div class="card-body">
</div>
<div class="card-footer">
</div>
</div>
@yshmarov
yshmarov / database.yml
Last active November 11, 2020 19:46
commands for activating pg (postgresql) for rails on c9.io platform
default: &default
adapter: postgresql
encoding: unicode
pool: 5
username: yaro
password: pass
host: <%= ENV['IP'] %>
development:
<<: *default