This file contains hidden or 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
# Create this file in your home folder | |
# Example: /home/diego/ruby_lsp | |
source "https://rubygems.org" | |
gem "rubocop" | |
gem "rubocop-performance" | |
gem "rubocop-packaging" | |
gem "rubocop-rails" | |
gem "rubocop-rspec" |
This file contains hidden or 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
<div class="mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="flex flex-col sm:flex-row justify-between items-center my-6"> | |
<h1 class="text-2xl md:text-3xl text-center sm:text-left">New Appointment</h1> | |
</div> | |
<%= form_with(model: @appointment, url: appointments_path) do |form| %> | |
<div | |
data-controller="select" | |
data-select-url-value="<%= countries_path %>" | |
data-select-param-value="country_id" |
This file contains hidden or 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
POSTGRES_USER=postgres | |
POSTGRES_PASSWORD=postgres |