# urlbeat **Repository Path**: mirrors_keleshev/urlbeat ## Basic Information - **Project Name**: urlbeat - **Description**: Simple URL shortener web app - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2026-05-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Urlbeat—simple URL shortener web app ====================================== **Urlbeat** provides a single resource called Redirection. * Redirection is created by submitting a POST request to `/` with `url` parameter. * Redirection is accessed by submitting a GET request to `/` where key is the short URL identifier. All responses are non-negotiable HTML. Demo -------------------------------- Run locally ----------- Export `DATABASE_URL` environment variable pointing to your SQLite or PostgreSQL database, for example: export DATABASE_URL=postgresql+psycopg2://databaseuser:P@ssw0rd@localhost/the_database Install Python requirements: pip install -r requirements.txt Use [foreman](http://blog.daviddollar.org/2011/05/06/introducing-foreman.html) to start the app: foreman start To launch tests run `py.test`, which is installed with other requirements: py.test test_urlbeat.py