$ ssh <mydomain.com>
$ dokku apps:create
This file contains 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
name: win32 Build | |
on: | |
push: | |
branches: ["master"] | |
pull_request: | |
branches: ["master"] | |
jobs: | |
build: |
This file contains 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
#!/bin/bash | |
# Required deps: | |
# imagemagick: https://imagemagick.org/script/download.php | |
# iconutil: https://developer.apple.com/library/archive/documentation/GraphicsAnimation/Conceptual/HighResolutionOSX/Optimizing/Optimizing.html | |
# name of your master icon, should be 1024x1024 or .svg | |
if [ -z "$PNG_MASTER" ]; then | |
# If not set, assign a default value | |
PNG_MASTER="icon-large.png" | |
fi |
This file contains 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
current directory: /Users/febeling/.rbenv/versions/3.0.3/lib/ruby/gems/3.0.0/gems/thin-1.5.1/ext/thin_parser | |
/Users/febeling/.rbenv/versions/3.0.3/bin/ruby -I /Users/febeling/.rbenv/versions/3.0.3/lib/ruby/3.0.0 -r ./siteconf20220701-96982-dpb84s.rb extconf.rb | |
checking for main() in -lc... yes | |
creating Makefile | |
current directory: /Users/febeling/.rbenv/versions/3.0.3/lib/ruby/gems/3.0.0/gems/thin-1.5.1/ext/thin_parser | |
make DESTDIR\= clean | |
current directory: /Users/febeling/.rbenv/versions/3.0.3/lib/ruby/gems/3.0.0/gems/thin-1.5.1/ext/thin_parser | |
make DESTDIR\= |
This file contains 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
# frozen_string_literal: true | |
begin | |
require "bundler/inline" | |
rescue LoadError => e | |
$stderr.puts "Bundler version 1.10 or later is required. Please update your Bundler" | |
raise e | |
end | |
gemfile(true) do |
If your project has any issues with the native folders, you can rebuild them by deleting both the ios and android directories at the root level of your project and running this command:
$ react-native eject
Running this command will check if the ios and android directories exist and then rebuild whichever one is missing.
The first time you run this command it will spit out a configuration JSON file called app.json
. By default, app.json
will have 2 properties:
This file contains 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
16:52:45.342 [error] GenServer {Commanded.Registration.LocalRegistry, {Commanded.Event.Handler, "issue"}} terminating | |
** (DBConnection.ConnectionError) tcp recv: closed | |
(ecto) lib/ecto/adapters/postgres/connection.ex:92: Ecto.Adapters.Postgres.Connection.execute/4 | |
(ecto) lib/ecto/adapters/sql.ex:256: Ecto.Adapters.SQL.sql_call/6 | |
(ecto) lib/ecto/adapters/sql.ex:542: Ecto.Adapters.SQL.struct/8 | |
(ecto) lib/ecto/repo/schema.ex:547: Ecto.Repo.Schema.apply/4 | |
(ecto) lib/ecto/repo/schema.ex:292: anonymous fn/14 in Ecto.Repo.Schema.do_update/4 | |
(ecto) lib/ecto/repo/schema.ex:774: anonymous fn/3 in Ecto.Repo.Schema.wrap_in_transaction/6 | |
(db_connection) lib/db_connection.ex:1366: DBConnection.transaction_nested/2 | |
(db_connection) lib/db_connection.ex:1226: DBConnection.transaction_meter/3 |
This file contains 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
defmodule MyApp.StorageCase do | |
use ExUnit.CaseTemplate | |
setup do | |
Application.stop(:myapp) | |
Application.stop(:commanded) | |
Application.stop(:eventstore) | |
reset_eventstore() | |
reset_readstore() |
This file contains 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
defmodule User do | |
use Ecto.Model | |
schema "users" do | |
field :email, :string | |
field :hashed_password, :string | |
field :password, :string, virtual: true | |
field :password_confirmation, virtual: true | |
timestamps |
This file contains 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
Lasst uns anfangen zu programmieren | |
indem wir Gesicht zeichnen | |
aus Kreisen | |
Um einen Kreis zu zeichnen brauchen wir den `ellipse` Befehl | |
Ich tippe also `ellipse` im Editor |
NewerOlder