₹500.00
Currently, we support only Indian payments. For international purchases, contact support.
Experiencing download issues or technical glitches? Our dedicated support team is here to assist you promptly.
Note: UPI is available for Indian customers.
For international support, feel free to email us at
support@kritimyantra.com.
Python 3.8+
Flask
Google Chrome, Mozilla Firefox, Brave, Microsoft Edge, Safari, Opera
Python, HTML, CSS, JavaScript
cd flask-auth-system-paid
python -m venv venv
source venv/bin/activate # On macOS/Linux
venv\Scripts\activate # On Windows
pip install -r requirements.txt
Create a .env file and add:
FLASK_APP=run.py
FLASK_ENV=development
SECRET_KEY=your-secret-key
SQLALCHEMY_DATABASE_URI=sqlite:///app.db
MAIL_SERVER=smtp.your-email.com
MAIL_PORT=587
MAIL_USERNAME=your-email@example.com
MAIL_PASSWORD=your-email-password
GOOGLE_CLIENT_ID=your-google-client-id
GOOGLE_CLIENT_SECRET=your-google-client-secret
GITHUB_CLIENT_ID=your-github-client-id
GITHUB_CLIENT_SECRET=your-github-client-secret
flask db init
flask db migrate -m "Initial migration"
flask db upgrade
To seed the database with default roles and test users:
python seeder/run_seeder.py
flask run # or python run.py
The app will be available at http://127.0.0.1:5000/