Skip to main content

A utility program to bootstrap flask projects

Project description

About

flask-createproject is a tool that bootstraps a new Flask project by creating the bare-minimum structure for a production ready project. It is inspired by the django-admin startproject tool. Running the tool prompts you for

  • The project's name.
  • The project's main app.
  • The author's name and email.
  • The project's description.

This is then used to create the project structure along with the necessary setup.py for packaging your application.

Installation

pip install flask-createproject

Usage

You start by typing

flask-createproject

Which will result in an interactive prompt that asks you a couple of questions and create the project with proper values for the setup.py file.

Development

pip-tools is used for tracking the requirements and creating the development and release enviroments.

The requirements are kept in requirements.in and requirements-dev.in and compiled into requirements.txt and requirements-dev.txt that could be later installed to the env. A couple of useful make targets are defined.

Creating the development environment.

python3.9 -m venv .venv
source .venv/bin/activate
make install-requirements-dev

Adding a new requirement

  1. add a new entry to the requirements.in or requirements-dev.in file (or both !)
  2. run the command
make compile-requirements

Running the tests.

  1. Pytest is used and the configurations are defined in setup.cfg.
  2. You can run the tests by running the command
pytest

Contribution

Please feel free to open Pull Requests/ issues as needed :-)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

flask-createproject-0.0.4.tar.gz (4.8 kB view hashes)

Uploaded Source

Built Distribution

flask_createproject-0.0.4-py3-none-any.whl (5.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page