Skip to content
This repository has been archived by the owner on May 13, 2023. It is now read-only.

casper-hansen/Flask-Stripe-MySQL-Bootstrapped

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Flask Stripe MySQL Bootstrapped

This template is ready for scaling and is easy to deploy.

Signup, Login and Stripe Demo!

Technologies and features

  • Python & Flask & MySQL Database
  • Stripe Subscriptions (Create, Cancel, Reactivate, Update supported)
  • Bootstrapped theme Creative and SB Admin 2
  • Docker: Fully split into microservices. Runs with Docker Compose, but can easily be translated to Kubernetes
  • User sign up and login (Facebook & Google integration in progress)
  • 3 Pricing Tiers included (Starter, Growth, Scale)
  • Base templates: Index, Dashboard and Pages
  • Secure app: Protection against XSS, X-XSS, CSRF, clickjacking (iframe) attacks
  • Trial Period (defaults to 24 hours)
  • Notifications for users (upselling, credit card expiring soon, etc.)
  • Feedback button: Easily gather feedback from users
  • Email validation
  • Multiprocessing with Gunicorn, for SQLAlchemy and MySQL
  • Admin account: View feedback, logs, errors, etc.

Future Work

  1. Scaling the frontend.

Check out Martin Fowler's website with this great article by Cam Jackson on splitting your frontend into microservices. Probably not necessary for most (99%), but consider it.

  1. Scaling the databases

Start separating into databases instead of tables; right now, there exists one table for each service. You should definitely think about scaling the database, a cloud option is a great option here.

  1. Less coupling

Currently, the different services knows about eachother (which means higher coupling). To remove this, we would want a centralized service that knows all the services, but the rest of the services don't know about eachother. All communication would go through this centralized service.

Most of the work is done, and it would just be changing some endpoints, but if you want truly low coupling, this needs a migration.

System Overview

This is a simple overview of the system. Go to the app folder and see the technical README for a more detailed overview.

System Overview

Todo

  • Move on to upgrading/downgrading monthly and yearly plans
  • Add billing information (invoice date, description, amount, was it paid)
  • Variable builder

How To Run The Application (After Installation)

You should make sure that your database is running first and foremost, else the following will fail. Look under installation for Windows or Mac/Linux for how to run the database locally. It just needs to be running in the background, all the databases and tables are created programmatically.

  1. Simply navigate (in a terminal) into the ~/app folder.
  2. Run docker-compose build for your first build and when you have made changes.
  3. Run docker-compose up to run all the services.

Please configure ~/app/setup_app/config.py as needed. I recommend making a mode for development and production (staging if necessary) with all the needed credentials. The file is very easy to extend with new config secrets.

Note that scaling is very easy, you can just convert your docker-compose.yml file to Kubernetes files, and you can easily get set up and running in Google Cloud Platform or Amazon Web Services. Read this tutorial for more.

Receiving webhooks from Stripe

For payments, Stripe needs to be able to send you webhooks. You can enable Stripe's test mode to make sure your setup is correct. I have used ngrok (free) to do this. It's really simple, you just navigate to the folder and run ./ngrok http 5004 or whichever port the Stripe service is running on.

Other choices are:

https://localtunnel.github.io/www/

http://localhost.run/

Installation (Development)

  1. Install Python (3.7 was used for this project)
  2. Install the package requirements pip install -r requirements.txt
  3. Download and install MySQL server and run it
  • Windows: See Windows section below
  • Mac/Linux: See Mac and Linux section below
  1. Configure your connector in app/setup_app/config.py. I configured MySQL to run on port 5001, but the default port is 3306, which you can easily switch the port to in the code.
  2. Install Docker

Windows

Download MySQL server and start it.

**IMPORTANT: Make sure to check "Configure MySQL Server as a Windows Service" and "Start the MySQL server at System Startup".

Check the service is configured by pressing windows key or WINDOWS KEY+R and typing services.msc and find MySQL (e.g. MySQL80). It should be running, also after you have restarted your computer. Always check back here if something is not running.

Register Environment Variables

A tip that makes your life easier:

  1. Press the windows key and search for 'edit environment variables'
  2. In the upper section, double click path. Then click new. Then find your installation folder for mysql, e.g. mine was under C:\Program Files\MySQL\MySQL Server 8.0\bin. Add it as your path and click ok.
  3. Now you can use mysql, mysqld and mysqladmin commands which will be helpful for debugging.

Login to the database from Windows

Open MySQL vXX Command Line Prompt (e.g. MySQL 8.0 Command Line Prompt) and enter your password, e.g. rootpw is used in this repo.

Mac and Linux

Use Homebrew to install mysql. Installing homebrew is the first step:

  1. Install homebrew: /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
  2. Install mysql brew install mysql
  3. Check it's installed mysql -V
  4. Locate your mysql config file. Mine was under /usr/local/etc/my.cnf, but check /etc/my.cnf or /etc/mysql/my.cnf or ~/.my.cnf if you can't find it. For Ubuntu 18.04, I found it under /etc/mysql/mysql.conf.d/mysqld.cnf
  5. (you can skip this, but I prefer it) Change your default port from 3306 by opening my.cnf or mysqld.conf.d. Add or find the line with port=5001, and optionally bind-address=0.0.0.0.
  6. Start mysql brew services start mysql (starts every time you boot computer)
  7. Configure your password mysqladmin -u root password 'yourpassword'. This password should be strong if used in production.

You can always restart or stop the service, e.g. if the service is running and you edit your config file, you need to restart the service for it to pick it up:

  • brew services restart mysql
  • brew services stop mysql

Login to MySQL database from Mac and Linux

Type in mysql -u root -p and press enter. It will ask for your password, then you are in.

About

Flask template with microservices architecture. Fully integrated with Stripe ๐Ÿš€

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published