Contents of project description
(You should have python and git installed first)
# Clone this project
git clone https://github.com/gh_user/project_name.git
cd project_name
# create a virtual environment
python3 -m venv serverenv
# activate the virtual environment
# Bash
source serverenv/bin/activate
# Fish
source serverenv/bin/activate.fish
# Powershell
.\serverenv\Scripts\Activate.ps1
# Install dependencies
pip install -r requirements.txt
# Run the server
uvicorn app:app --port 8081 --host 0.0.0.0 --reloadIf you want to send emails, you need to create a .env file with the following content:
EMAIL="[email protected]"
EMAIL_PASSKEY="YOUR_PASSKEY"
EMAIL_HOST="smtp.example.com"Pull requests are welcomed. For major changes, please open an issue first to discuss what you would like to change.