I hereby claim:
- I am qwexvf on github.
- I am qwexvf (https://keybase.io/qwexvf) on keybase.
- I have a public key whose fingerprint is 1FEE E9CD 2ED2 0477 5BBA 1720 B884 5784 F4D2 4CE6
To claim this, I am signing this object:
from flask import Flask, redirect | |
from urllib import parse | |
import requests | |
import json | |
app = Flask(__name__) | |
@app.route('/') | |
def hello_world(): | |
steam_openid_url = 'https://steamcommunity.com/openid/login' |
I hereby claim:
To claim this, I am signing this object:
version: '3' | |
services: | |
datastore: | |
image: busybox | |
volumes: | |
- db_data:/var/lib/psql | |
postgresql: | |
image: postgres | |
environment: | |
POSTGRES_USER: username |
# create a folder called docker and insode create another folder called node then put this file in there. | |
# note: change the node version the your preferred one. | |
FROM node:10 | |
WORKDIR /app | |
# you may also want to change the location of package.json | |
COPY . /app/ | |
RUN npm i |