Giter Site home page Giter Site logo

abbiocco's Introduction

How to setup this project

Prerequisites:

  1. Python
  2. pip3
  3. install virtualenv from pip using
pip install virtualenv
  1. The above command installs utility to create a virtual environment
  2. Check on google how to activate venv on windows
  3. After venv is activated we can then enter the command
pip3 install -r requirements.txt

How to run this project

Due to limitations in the code we need to create a user explicity from the flask shell

The following are the commands to add a user via the flask shell into the db but before we can do that we need to delete the migrations folder and app.db from the current repo

Commands after removing the migrations directory

flask db init
flask db migrate
flask db upgrade
flask shell

Next command is inside the shell

from app import models,db
user = models.User(username="demo",email="demo")
user.set_password("pass")
db.session.add(user)
db.session.commit()

After the above configurations we can run the project using:

flask run

Please note: this is a fork

The master code is being mantained at RahulKeluskar/Abbiocco

This fork wont have any further updates

abbiocco's People

Contributors

wayneremedios avatar simransirsat avatar vishakadesai avatar rahulkeluskar avatar rahulkeluskarsap avatar sirajp99 avatar mehakgupta avatar femifrancis avatar rahulpvinish 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.