ChitChat is a Python-powered Social Network.
-
cd into backend folder
cd backend
-
Create virtual environment
python -m venv venv
source venv/bin/activate
venv\Scripts\activate
-
Install dependencies from the requirements text file.
pip install -r requirements.txt
To run this project do the following:
-
Make migrations:
python manage.py makemigrations
-
Run migrations:
python manage.py migrate
-
Create super user:
python manage.py createsuperuser
-
Run the server:
python manage.py runserver
-
cd into the frontend folder
cd frontend
-
Install dependencies
npm install
-
Run the development server
npm run dev
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.