Since Chrome apps are now being deprecated. Download postman from https://dl.pstmn.io/download/latest/linux
Although I highly recommend using a snap
sudo snap install postman
tar -xzf Postman-linux-x64-5.3.2.tar.gz| #settings.py ------------------------------------------------------------------------------------- | |
| #https://www.digitalocean.com/community/tutorials/how-to-use-google-s-smtp-server | |
| EMAIL_USE_TLS = True | |
| EMAIL_HOST = 'smtp.gmail.com'# ? | |
| EMAIL_HOST_USER = 'whateveremail@test.com' | |
| EMAIL_HOST_PASSWORD = 'Yourpassword12345' | |
| EMAIL_PORT = 587 #? | |
| SITE_NAME = "The Name of your app" |
| import React from 'react'; | |
| import { graphql, compose, withApollo } from 'react-apollo' | |
| import openNotification from '../components/NotificationComponent' | |
| import gql from 'graphql-tag'; | |
| const mutations = { | |
| verifyToken: gql` | |
| mutation VerifyToken($token: String!) { | |
| verifyToken(token: $token) { |
Since Chrome apps are now being deprecated. Download postman from https://dl.pstmn.io/download/latest/linux
Although I highly recommend using a snap
sudo snap install postman
tar -xzf Postman-linux-x64-5.3.2.tar.gz| version: "3.6" | |
| services: | |
| gitlab: | |
| image: gitlab/gitlab-ce | |
| volumes: | |
| - gitlab-data:/var/opt/gitlab | |
| - gitlab-logs:/var/log/gitlab | |
| - gitlab-config:/etc/gitlab | |
| networks: | |
| - traefik-public |
In this guide I collect all the things I had to manually set up after installing IntelliJ using Flatpak on Linux. Also mostly applicable to other JetBrains IDEs like PHPStorm, WebStorm, Rider, PyCharm etc.
Flatpak uses an isolated environment to install the latest version of (usually graphical) applications without having to rely on installed system libraries and such with varying versions.