Installing mysql2 gem errors on m1 Mac.
Make sure mysql, openssl and zstd are installed on Mac via Homebrew.
brew install mysql openssl zstd
| // Copyright 2016-2020 Crytek GmbH / Crytek Group. All rights reserved. | |
| #include "StdAfx.h" | |
| #include "Player.h" | |
| #include "Bullet.h" | |
| #include "SpawnPoint.h" | |
| #include "GamePlugin.h" | |
| #include <CryRenderer/IRenderAuxGeom.h> | |
| #include <CrySchematyc/Env/Elements/EnvComponent.h> | |
| #include <CryCore/StaticInstanceList.h> |
| apiVersion: apps/v1 | |
| kind: Deployment | |
| metadata: | |
| name: rails-app | |
| spec: | |
| replicas: 1 | |
| selector: | |
| matchLabels: | |
| app: rails-app | |
| template: |
| apiVersion: v1 | |
| kind: Service | |
| metadata: | |
| name: rails-app-service | |
| spec: | |
| selector: | |
| app: rails-app | |
| ports: | |
| - name: http | |
| port: 80 |
| #!/bin/bash | |
| # Update the system | |
| sudo apt-get update | |
| # Install Docker | |
| sudo apt-get install -y docker.io | |
| # Install apt-transport-https and curl | |
| sudo apt-get install -y apt-transport-https curl |