Skip to content

Instantly share code, notes, and snippets.

View mfejczaruk's full-sized avatar

Mateusz Fejczaruk mfejczaruk

View GitHub Profile
@mfejczaruk
mfejczaruk / setup.md
Created October 23, 2016 19:20 — forked from chris-jamieson/setup.md
Set up Franz for Ubuntu
  • Download Franz for your distribution from MeetFranz.com
  • change into the same directory as the downloaded file, then sudo tar -xf Franz-linux-x64-0.9.10.tgz -C /opt/franz
  • (optional) wget "https://cdn-images-1.medium.com/max/360/1*v86tTomtFZIdqzMNpvwIZw.png" -O franz-icon.png then sudo cp franz-icon.png /opt/franz
  • (optional) sudo touch /usr/share/applications/franz.desktop then sudo vim /usr/share/applications/franz.desktop

paste the following lines into the file, then save the file:

[Desktop Entry]
Name=Franz
Comment=
@mfejczaruk
mfejczaruk / install.sh
Last active November 17, 2016 11:57 — forked from emgiezet/install.sh
Oro install and recreate db
#!/bin/bash
application=$1
env=$2
if [ -z "$application" ]; then echo "application must be passed as an argument"; exit; fi
if [ -z "$env" ]; then
echo "env set to dev";
env='dev';