A Django application that renders a static site containing one or more links to social media (and other) websites
Go to file
c0de e7494c2ffc Allow any allowed hosts when debug 2023-11-13 23:01:47 -06:00
.vscode make black the default python formatter 2023-11-13 22:50:46 -06:00
social_links Allow any allowed hosts when debug 2023-11-13 23:01:47 -06:00
.gitignore Create the project 2023-11-06 22:37:19 -06:00
readme.md make the page more dynamic, update readme 2023-11-13 22:50:28 -06:00
requirements.txt Create the project 2023-11-06 22:37:19 -06:00

readme.md

django-social-links

A Django application that renders a static template with social media links

Getting started for development

  1. Clone this repo: git clone https://c0de.dev/c0de/django-social-links
  2. Enter this repo: cd django-social-links
  3. Create a virtual environment: python3 -m venv .venv
  4. Enter the virtual environment: source .venv/bin/activate
  5. Install dependencies: pip install -r requirements.txt
  6. Enter the app: cd social_links
  7. Run migrations: python3 manage.py migrate
  8. Run development server: python3 manage.py runserver

Getting started for deployment