Giter Site home page Giter Site logo

flask_movie's Introduction

Aplicacao basica para entender o funcionamento do flask associado a um template bootstrap

$ cd app_path
$ mkdir -p static/css
$ mkdir -p static/images
$ mkdir -p static/js
$ mkdir -p templates
$ vi app.py
from flask import Flask
from flask_sqlalchemy import SQLAlchemy
app = Flask(name)

@app.route('/')
def index():
return "

hello Flask

"

if name == "main":
app.run()

  • Bibliotecas
    pip install flask
    pip install Flask-SQLAlchemy
    pip install psycopg2
    pip install flask-security
    pip install bcrypt

  • Banco de dados postgres rodando em container
    docker run --name postgres -e POSTGRES_PASSWORD='1234' -p 5432:5432 -d postgres

  • atencao para erro no login no docker hub : o docker do mac estava logado com o email e nao com o docker id , que é só o id_docker

  • pgadmin para acessar administrar o postgres:
    docker pull dpage/pgadmin4
    docker run -p 8000:80 -e "PGADMIN_DEFAULT_EMAIL=[email protected]" -e "PGADMIN_DEFAULT_PASSWORD=1234" -d dpage/pgadmin4

  • usuario postgres : postgress/password

  • Criando a tabela do usuario
    $ python

from app import db
db.create_all()

flask_movie's People

Contributors

jeroavf avatar

Watchers

 avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.