Skip to main content

AppScriptify CLI — create app templates instantly

Project description

AppScriptify — Login template (simple)

This small project provides a basic login/signup template using Flask and MongoDB (via Motor). It stores users in a MongoDB collection and uses secure password hashing (PBKDF2). The login can accept either username or email.

What it uses

  • Flask — web framework
  • Motor (async MongoDB driver) — async access to MongoDB
  • python-dotenv — load environment variables

Files of interest

  • appscriptify/appscriptify/templates/login/app.py — main Flask app used in this template
  • appscriptify/appscriptify/templates/login/database.py — async database helpers (Motor)
  • config.json — contains database/collection names (already present in the repo)
  • templates/ and static/ — UI HTML/CSS/JS

Environment variables

Create a .env file in the project root with at least:

MONGO_URI="your_mongo_connection_string"

Example .env content:

MONGO_URI="mongodb+srv://testuser:<password>@testdb.ktuizkl.mongodb.net/?appName=TestDB"

Also ensure config.json (already present) contains the database and collection names. Example values are:

{
  "users_database": "usersDB",
  "users_collection": "users"
}

Change config.json if needed.

Install

  1. (Optional) Create a virtual environment:
python -m venv .venv
.\.venv\Scripts\activate
  1. Install dependencies:
python -m pip install -r requirements.txt

Run (development)

Open a terminal and run the Flask app file used in the template. From the repository root you can run:

python app.py

This will start Flask's built-in server on http://127.0.0.1:5000 by default.

Alternatively, you can set FLASK_APP and use flask run after setting the working directory appropriately.

Cookies & Sessions

  • The app sets HTTP-only cookies for username/email by default (good for preventing JavaScript access).
  • In development the cookie secure flag is set to False to allow non-HTTPS testing. In production change it to True.
  • The app also stores minimal session info using Flask's session (server-side cookie signing). Make sure app.secret_key is set in production using an environment variable.

Notes and security

  • Passwords are hashed with PBKDF2 + SHA256 via Python's hashlib and stored as base64(salt + hash). This is reasonably secure for a small project but using a well-maintained library (like passlib) is recommended for production.
  • Motor is async; the example app uses a single event loop and runs async DB calls from synchronous routes. For production consider using an async-capable web server/framework (Quart/FastAPI) or rewrite routes as fully sync using pymongo.
  • Make sure your MongoDB connection string is secure and credentials are not committed to the repo.

Next steps (suggested)

  • Add a /logout route that clears cookies and session (I can add that for you).
  • Add CSRF protection (e.g., Flask-WTF or a middleware) for forms.
  • Replace manual cookie handling with Flask's session-related features or a secure server-side session store.
  • Add tests for signup/login flows.

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

appscriptify-1.3.0.tar.gz (28.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

appscriptify-1.3.0-py3-none-any.whl (35.4 kB view details)

Uploaded Python 3

File details

Details for the file appscriptify-1.3.0.tar.gz.

File metadata

  • Download URL: appscriptify-1.3.0.tar.gz
  • Upload date:
  • Size: 28.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.0

File hashes

Hashes for appscriptify-1.3.0.tar.gz
Algorithm Hash digest
SHA256 4638b9d8e0c85229fd8aca01df9da0508e1080880c13f9c3daf3bbf239cc1f02
MD5 04e56d9e3d1f6816d320dd682b4d0dd8
BLAKE2b-256 9c7953b3f0c6bfb84e463bffc312ed8b3765a56c7703be653338f1d21c27f5fb

See more details on using hashes here.

File details

Details for the file appscriptify-1.3.0-py3-none-any.whl.

File metadata

  • Download URL: appscriptify-1.3.0-py3-none-any.whl
  • Upload date:
  • Size: 35.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.0

File hashes

Hashes for appscriptify-1.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 17a72620fc282cd0aa2e49c6bd45d2d3d7208aac95cd2171e3b5ff4883a69f7e
MD5 8fd74f34fd30a0ffb062c4e862fd10f9
BLAKE2b-256 23c4506da8db01858d9d1e45012de34b7ebbac60b8c180f64a210a56c87aa286

See more details on using hashes here.

Supported by

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