Advanced, modern and fast social network built with Django.
git clone https://github.com/dori-dev/social-network.git
cd social-network
mkdir -p volumes/db volumes/cache volumes/logs src/staticfiles
sudo chmod -R 777 ./volumes/cache/
Copy src/.env.example
to src/.env
and set the all variables value.
cp src/.env.example src/.env
Build images and start containers.
docker-compose up --build
Stop and remove containers.
docker-compose down
Run containers in the background.
docker-compose up -d
Main Page: localhost
sudo chown $USER /etc/hosts
echo '127.0.0.1 mysite.com' >> /etc/hosts
Run server with https.
python manage.py runserver_plus --cert-file cert.crt
Add fake user & post data to database.
python manage.py fakedata
Download Source Code: Click Here
My Github Account: Click Here