This is my 4th and final project in the Software Engineering Bootcamp by General Assembly, and it's a reddit clone where you can ask questions and answer. It features categories portraying subreddits in reddit, and it also accepts media such as images.
- PostgresSQL
- Django
- Python
- CSS3
- JavaScript
Clone the repository in a directory of your liking:
git clone https://github.com/yousifj129/forums-for-all.git
Download python
In the project directory lets setup a virtual environment:
python -m venv my-env
my-env can be anything
and then run the environment:
Windows:
source name-of-venv/scripts/activate
Mac:
source name-of-venv/bin/activate
pip install -r requirements.txt
- create a .env file
- add the following in the .env:
DB_PASSWORD=your_pgadmin_password - create a database in pgadmin called
forums-for-all
python manage.py runserver