SSH into Root
$ ssh root@123.123.123.123
Change Root Password
SSH into Root
$ ssh root@123.123.123.123
Change Root Password
| it { should validate_presence_of :name } | |
| context 'uniqness' do | |
| subject { build(:marca) } | |
| it { should validate_uniqueness_of :sku } | |
| end | |
| FactoryGirl.define do |
| # create user (password) | |
| password = Services::PasswordDigester.new.digest('password') | |
| hash = Entities::User.new(id: SecureRandom.uuid, public_key: 'd3a13bdf38bec706dbf5fe45', secret_key: password, created_at: Time.now, updated_at: Time.now).to_h | |
| Services::Persistence::Repos::UserRepo.new.create(hash) | |
| Agregar logger a la aplicación | |
| #transmission_id = 'e8d9a710-7af0-11eb-b682-5329c90f1393' |
| --[[ | |
| ===================================================================== | |
| ==================== READ THIS BEFORE CONTINUING ==================== | |
| ===================================================================== | |
| ======== .-----. ======== | |
| ======== .----------------------. | === | ======== | |
| ======== |.-""""""""""""""""""-.| |-----| ======== | |
| ======== || || | === | ======== | |
| ======== || KICKSTART.NVIM || |-----| ======== |
| # frozen_string_literal: true | |
| require 'debug' | |
| require 'faraday' | |
| require 'rspec' | |
| ############## Entities ############################################### | |
| class Property |