A simple platform to share your social media accounts as a single link
Try on : https://murls.pythonanywhere.com/
Activation link at registration is disabled on pythonanywhere.
- Python
- Django
- Bootstrap 5
Clone the project
git clone https://github.com/arczi0/murls
Create virtual environment
python -m venv venv
For Windows use:
venv\Scripts\activate
Go to the project directory
cd murls
Install dependencies
pip install -r requirements.txt
Create file to store environment variables
cd murls
Make file
.env
Generate secret key
python -c 'from django.core.management.utils import get_random_secret_key; print(get_random_secret_key())'
Copy output to .env file and save
export SECRET_KEY=[output from previous command]
Setup database
python manage.py makemigrations
python manage.py migrate
Start the server
python manage.py runserver
If you want use this app in local network (eg. on mobile device) edit hosts in settings.py and run:
python manage.py runserver 'YOUR-IP-ADDRESS:PORT'
- Add custom themes