Code Monkey home page Code Monkey logo

iws_feature_requester's Introduction

Feature requester

Build Status

About

A simple Flask application made to clients who wants to have a better way to request new features for their software.

With this app, the client creates a request that will be exposed to developers who implement them.

The project can be viewed live at:

The app is not live anymore

App stage

This project is a minimum viable product (MVP) based on given requirements. A lot of features can be implemented to make it a complete product. Features like filtering by clients, creating new clients, and so on. The UX can be improved too, things like card color changing when the due date approaches and better error and success feedback.

Technologies used

For development

  • Backend

    Python 3.6, Flask, SqliteAlchemy, Sqlite

  • Frontend Bootstrap 4, KnockoutJS, Jquery

For deployment

  • AWS Elastic Beanstalk.
  • Deploy with eb CLI
  • Database Mysql

To run the project on a local machine

Set up environment

1 - clone the project
    git clone https://github.com/HildePedroni/iws_feature_requester.git
2 - create a virtual env
    python3 -m venv env
  • Activate the virtual environment
    source env/bin/activate
3 - install requirements
    pip install -r Requirements.txt 
4 - Create a .env file on the project root and add the following variables:
DEBUG=True

DB_HOSTNAME=localhost
DB_USERNAME=root
DB_PASSWORD=root
DB_NAME=ebdb

AWS_ACCESS_KEY_ID=Your_key_id_or_leave_blank
AWS_SECRET_ACCESS_KEY=your_access_key_or_leave_blak

The above variables are required, but except DEBUG they all can be left blank
If you set DEBUG to false, you will have to set-up a MySQL database, or change the config.py file to use whatever database you like

5 - set up the database

For development, SQLite was used. To create the database access the python interactive shell at the project root

    python
    >>> from feature_requester import create_app
    >>> from feature_requester.models import db
    >>> db.create_all(app=create_app())
6 - run tests
    make test
7 - To run the application locally, run
    python application.py

To Deploy the application

The application is deployed with AWS elastic Beanstalk CLI. With a MySQL database

To install follow the instructions at:

https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/eb-cli3-install.html

To configure follow the instructions at:

https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/eb-cli3-configuration.html

You have to have the AWS credentials to config the environment

After the configuration done, use

    eb deploy

to deploy the application

Hope you enjoy

iws_feature_requester's People

Contributors

hildepedroni avatar

Watchers

 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.