Complete Blogging Website created using React and Django
git clone https://github.com/asmit203/TalkitOut.git
cd TalkitOutthe install all the dependencies using
pip install -r requirements.txtrun the runserver.bat or runserver.sh file to start both the servers automatically
run the server manually using
cd "TalkitOut-Backend (REST-APIs)"
python manage.py runserver 8000start frontend react server (in a new terminal) using
cd talkitout-frontend
npm startthis will automatically open localhost:3000 in your default browser
start ollama server (in a new terminal) using
ollama run phi3:latest
- Also Whenever Cloning This Repo Please Delete all
migrationandpycachefiles**- Don't Forget to add a db.sqlite3 for the database to run
- for forceful creation of tables
python manage.py migrate --run-syncdb- Also in the
talkitout-frontenddirecetory update npm packages usingnpm install