-
git clone https://github.com/Tonaeus/linkwall.git
-
cd linkwall -
python3 -m venv venv
-
source venv/bin/activate -
pip3 install -r requirements.txt
-
vim .env
-
python3 manage.py makemigrations
-
python3 manage.py migrate
-
python3 manage.py createsuperuser
-
python3 manage.py runserver
-
deactivate
-
cd ..