A Chat app which mainly focuses on privacy and enjoyments and also its written in Next.js and Django.
- Node.js and npm (for the frontend)
- Python and pip (for the backend)
- Django
- Git
git clone https://github.com/r0ld3x/chatflix.git
-
Navigate to the frontend directory:
cd frontend -
Install the dependencies:
npm install -
Rename .env.example to
.envin the root of the frontend directory and add the necessary environment variables. -
Start the development server:
npm run dev
-
Navigate to the backend directory:
cd backend -
Create a virtual environment and activate it:
python -m venv venv source venv/bin/activate # On Windows use `venv\Scripts\activate` -
Install the dependencies:
pip install -r requirements.txt -
Fill core/settings.py especially resend api.
-
Apply the database migrations:
python manage.py migrate -
Start the Django development server:
python manage.py runserver
Once both the frontend and backend servers are running, you should be able to access the application at http://localhost:3000.
Contributions are always welcome!
See contributing.md for ways to get started.
Please adhere to this project's code of conduct.
