-
This is a simple URL Shortener build with FastAPI
-
It leverages modern Python development utilities and libraries.
- 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"
- Fork the repository.
- Clone the forked repository to your local machine.
- Create a new branch for your changes.
- Push the changes
- Create a Pull Request to the original Branch
Thanks for reading.