Skip to content

tejas-kr/url_shortener_project

Repository files navigation

URL Shortener

  • This is a simple URL Shortener build with FastAPI

  • It leverages modern Python development utilities and libraries.

Getting your environment read

  • Create a virtual environment from the root directory (url_shortener_project)

python -m venv venv

  • Install the requirements.txt

pip install -r requirements.txt

  • Create a .env file with the following values
ENV_NAME="Dev"
BASE_URL="http://127.0.0.1:8000"
DB_URL="sqlite:///./shortener.db"

To contribute to the project

  1. Fork the repository.
  2. Clone the forked repository to your local machine.
  3. Create a new branch for your changes.
  4. Push the changes
  5. Create a Pull Request to the original Branch

Thanks for reading.