Vitary
A simple social media made with Django
🛠️
Installation Get the source code
git clone https://github.com/foxy4096/Vitary.git
Go the the dir
cd Vitary
Add the enviroment variables
In Powershell or terminal
touch .env
In .env
add the following variables
DEBUG=True or False
EMAIL_ADDRESS
EMAIL_PASSWORD
SITE_ID
Make a virtualenv
pip install virtualenv
and
virtuatenv venv
Install the dependencies
pip install -r req.txt
Make Migrations
On Windows:
python manage.py makemigrations
On *nix systemm:
python3 manage.py makemigrations
Migrate the database
On Windows:
python manage.py migrate
On *nix systemm:
python3 manage.py migrate
Create the superuser
On Windows :
python manage.py createsuperuser
On *nix systemm:
python3 manage.py createsuperuser
Run the server
On Windows:
python manage.py runserver
On *nix systemm:
python3 manage.py runserver
🔧
Tools Python the programming language
Git Version Control System
Visual Studio Code Free source code editor