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
charlie@Charlies-MacBook-Pro-2 merchi.co % ./helpi create_test_data | |
WARN[0000] The "ARCHITECTURE" variable is not set. Defaulting to a blank string. | |
WARN[0000] The "ARCHITECTURE" variable is not set. Defaulting to a blank string. | |
WARN[0000] The "ARCHITECTURE" variable is not set. Defaulting to a blank string. | |
WARN[0000] The "ARCHITECTURE" variable is not set. Defaulting to a blank string. | |
WARN[0000] The "ARCHITECTURE" variable is not set. Defaulting to a blank string. | |
WARN[0000] Found orphan containers ([merchi-dev_proxy-1 merchi-frontend-1 merchi-websockets-1 merchi-backend-1 merchi-celery_beat-1 merchi-webpack-1]) for this project. If you removed or renamed this service in your compose file, you can run this command with the --remove-orphans flag to clean it up. | |
[+] Creating 4/0 | |
✔ Container merchi-redis-1 Running 0.0s | |
✔ Container merchi-db-1 Running |
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
charlie@Charlies-MacBook-Pro-2 merchi.co % ./helpi alembic_upgrade | |
./helpi: line 396: export: `+': not a valid identifier | |
./helpi: line 396: export: `+': not a valid identifier | |
./helpi: line 396: export: `/default_themes/gracecrm/default.css': not a valid identifier | |
WARN[0000] The "ARCHITECTURE" variable is not set. Defaulting to a blank string. | |
WARN[0000] The "ARCHITECTURE" variable is not set. Defaulting to a blank string. | |
WARN[0000] The "ARCHITECTURE" variable is not set. Defaulting to a blank string. | |
WARN[0000] The "ARCHITECTURE" variable is not set. Defaulting to a blank string. | |
WARN[0000] The "ARCHITECTURE" variable is not set. Defaulting to a blank string. | |
WARN[0000] Found orphan containers ([merchi-dev_proxy-1 merchi-frontend-1 merchi-websockets-1 merchi-backend-1 merchi-celery_beat-1 merchi-webpack-1]) for this project. If you removed or renamed this service in your compose file, you can run this command with the --remove-orphans flag to clean it up. |
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
pragma solidity ^0.5.1; | |
contract ProxyContract { | |
address internal proxied; | |
function setLogicContractAddress (address newAddress) public | |
{ | |
proxied = newAddress; | |
} | |
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
pragma solidity ^0.6.0; | |
contract HotelRoom { | |
//vacant or occupied | |
enum Statuses {Vacant, Occupied} | |
Statuses currentStatus; | |
//events allow listeners to subscribe to changes on the blockchain | |
event Occupy(address _occupant, uint _value); |
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
pragma solidity ^0.6.0; | |
contract MyContract { | |
//Struct starts here | |
struct BookStruct { | |
string title; | |
uint pages; | |
} | |
// BookStruct public newStruct = BookStruct("My Book", 300); |
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
pragma solidity ^0.6.0; | |
contract MyContract { | |
//Struct starts here | |
struct BookStruct { | |
string title; | |
uint pages; | |
} | |
// BookStruct public newStruct = BookStruct("My Book", 300); |