Burnsedia / murls

A simple platform to share your social media accounts as a single link

Home Page:https://murls.pythonanywhere.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Murls - share your social media accounts

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.

Tech Stack

  • Python
  • Django
  • Bootstrap 5

Screenshots

mockup-murls-small

Run Locally

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'

Roadmap

  • Add custom themes

About

A simple platform to share your social media accounts as a single link

https://murls.pythonanywhere.com/


Languages

Language:Python 57.3%Language:HTML 39.7%Language:CSS 3.0%