All Projects → testdrivenio → flask-vue-stripe

testdrivenio / flask-vue-stripe

Licence: MIT license
Stripe payments with Vue and Flask

Programming Languages

Vue
7211 projects
python
139335 projects - #7 most used programming language
javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to flask-vue-stripe

laravel-stripe-connect
🦓 Stripe Connect binding for Laravel
Stars: ✭ 73 (+160.71%)
Mutual labels:  stripe
laravel-cashier-examples
Examples of using Laravel Cashier v.10
Stars: ✭ 106 (+278.57%)
Mutual labels:  stripe
drf-stripe-subscription
An out-of-box Django REST framework solution for payment and subscription management using Stripe.
Stars: ✭ 42 (+50%)
Mutual labels:  stripe
ethibox
Open-source web apps hoster
Stars: ✭ 130 (+364.29%)
Mutual labels:  stripe
Business-Stripe
Perl bindings for Stripe payment system
Stars: ✭ 21 (-25%)
Mutual labels:  stripe
MERN-Ecommerce
An E-commerce app built using MERN stack. It has 4 social login options and implements email verification as well. Stripe and Paypal payment gateways are implemented.
Stars: ✭ 50 (+78.57%)
Mutual labels:  stripe
nean-stack-starter
neo4j, express, angular, node
Stars: ✭ 30 (+7.14%)
Mutual labels:  stripe
stripe-course
Stripe Payments In Practice - Build your own online ecommerce store and subscription membership website
Stars: ✭ 31 (+10.71%)
Mutual labels:  stripe
stripe
Stripe integration with Magento 2
Stars: ✭ 58 (+107.14%)
Mutual labels:  stripe
Node.js-Stripe-Shopping-Cart
Example integration of Stripe's Checkout API into a Node.js application
Stars: ✭ 93 (+232.14%)
Mutual labels:  stripe
marketplace
A file sharing website using Laravel 5.5
Stars: ✭ 19 (-32.14%)
Mutual labels:  stripe
netlify-stripe-subscriptions
An example of managing subscriptions with the Stripe Customer Portal and Netlify Identity.
Stars: ✭ 96 (+242.86%)
Mutual labels:  stripe
svelte-stripe-js
Everything you need to add Stripe Elements to your Svelte project
Stars: ✭ 139 (+396.43%)
Mutual labels:  stripe
payment-form-modal
How to implement Stripe Elements within a modal dialog.
Stars: ✭ 108 (+285.71%)
Mutual labels:  stripe
nuxt-stripejs
💳 NuxtJS module for Stripe.js which loads only when required and w/ retry mechanism
Stars: ✭ 17 (-39.29%)
Mutual labels:  stripe
memberful-wp
Better membership software for WordPress.
Stars: ✭ 37 (+32.14%)
Mutual labels:  stripe
CONNECT
A Socket.io / React JS real time multiplayer flash card game for learning.
Stars: ✭ 18 (-35.71%)
Mutual labels:  stripe
Penny-Seed
PennySeed is an alternative crowdfunding platform where the funding goal is divided by the number of pledgers
Stars: ✭ 18 (-35.71%)
Mutual labels:  stripe
crowdfunding-backend
[DEPRECATED] A crowdfunding backend written with NodeJS, Apollo and PostgreSQL. Features an extensive data model, mult. payment integrations, passwordless auth, statistics and admin endpoints.
Stars: ✭ 23 (-17.86%)
Mutual labels:  stripe
Commerce
An E-Commerce package for Laravel with Grafite CMS. Take control of your content and how you sell it! Products, subscriptions, shipping, downloading and more!
Stars: ✭ 45 (+60.71%)
Mutual labels:  stripe

Accepting Payments with Stripe, Vue.js, and Flask

Want to learn how to build this?

Check out the post.

Want to use this project?

  1. Fork/Clone

  2. Sign up for Stripe (if you don't already have an account).

  3. Set the Stripe keys as environment variables:

    $ cd server
    $ export STRIPE_PUBLISHABLE_KEY=<YOUR_STRIPE_PUBLISHABLE_KEY>
    $ export STRIPE_SECRET_KEY=<YOUR_STRIPE_SECRET_KEY>
  4. Run the server-side Flask app in one terminal window:

    $ cd server
    $ python3.9 -m venv env
    $ source env/bin/activate
    (env)$ pip install -r requirements.txt
    (env)$ python app.py

    Navigate to http://localhost:5000/ping

  5. Run the client-side Vue app in a different terminal window:

    $ cd client
    $ npm install
    $ npm run serve

    Navigate to http://localhost:8080

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].