Skip to content

Instantly share code, notes, and snippets.

npm install -g yarn
npm install -g pure-prompt
@ddelizia
ddelizia / php_setup.sh
Last active August 6, 2018 16:19
Installing php on mac osx and homebrew
xcode-select --install
echo '****Installing Apache httpd'
brew install httpd
echo '****Installing Php 5.6 and 7.2'
brew install php@5.6
brew install php@7.2
echo '****Installing mariadb'
pip3 install pipenv
#Installing Jupyter notebook in pipenv
pyenv install 3.6.6
mkdir -p ~/projects/jupyter
cd ~/projects/jupyter
pipenv --python ~/.pyenv/versions/3.6.6/bin/python
pipenv install tensorflow scikit-learn keras matplotlib pandas plotly jupyter statsmodels xgboost
docker network create service-net
docker run -d --name elasticsearch --net service-net -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" elasticsearch:7.5.1
docker run -d --name kibana --net service-net -p 5601:5601 kibana:7.5.1
docker run -d --name mongo --net service-net -p 27017:27017 mongo
docker run -d --name mongo-express --net service-net -p 8081:8081 mongo-express
docker run -d --name postgres --net service-net -p 5432:5432 postgres
docker run -d --name adminer --net service-net -p 8080:8080 adminer
docker run -d --name redis --net service-net -p 6379:6379 redis
docker run -d --name firestore-emulator --net service-net -e "FIRESTORE_PROJECT_ID=project-test" -p 8282:8080 pathmotion/firestore-emulator-docker
docker run -d --name minio --net service-net 9000:9000 minio/minio server /data
@ddelizia
ddelizia / Brewfile
Last active January 25, 2021 12:40
Brewfile
brew 'graphviz'
brew 'htop'
brew 'ctop'
brew 'wget'
brew 'go'
brew 'pyenv'
brew 'ngrok'
brew 'helm'
brew 'cdktf'
brew 'minikube'