HuaoMao is a social network with the following implemented features:
- Site authorization
- Creation of a personal profile with the ability to edit it (photo, birthday, city of residence)
- Adding friends
- Synchronized message exchange
- Ability to leave feedback about the site
-
Web application design: design in Figma
-
The backend of the application is written in Django. Djoser is used for authentication, and Django Channels for WebSocket notification.
-
Frontend is developed using React + Redux.
At the time of writing this README, the application is hosted on the server http://158.160.113.82/. The virtual machine (server) is rented on Yandex Cloud.
Unauthenticated users can view the following pages:
- http://158.160.113.82/login
- http://158.160.113.82/profile/<id>
- http://158.160.113.82/users
- http://158.160.113.82/feedback
Upon push and pull request to the main branch, a workflow is triggered. It includes testing the application and deploying it to the remote server in case of success. A separate volume is allocated for the database, ensuring that its state remains current (not reset) with each update.
First, update the constants in backend/backend/settings.py
and react-app/src/api/config.js
, corresponding to the host and ports.
- Apply migrations to data models from the backend directory:
python3 manage.py migrate
- Run the server from the backend directory:
python3 manage.py runserver
- Start the Docker container for handling sockets with Redis channels:
docker run -p 6379:6379 -d redis:5
- Run the React application from the react-app directory:
npm install
npm start
- First, bring up the container. From the project's root folder (where
docker-compose.yml
is located), execute:
docker-compose up -d
To rebuild images, execute:
docker-compose up --build
- If the command ends with an error like:
ERROR: for nginx Cannot start service nginx: Ports are not available: exposing port TCP 0.0.0.0:80 -> 0.0.0.0:0: listen tcp 0.0.0.0:80: bind: address already in use
Check which process is occupying port 80:
sudo lsof -i :80
Terminate that process using:
sudo kill -9 <pid>
If the port is occupied by the Apache server, run:
/etc/init.d/apache2 stop
Assuming 158.160.113.82 is the IP of the server where we want to run our application.
- Create a context for remote SSH:
docker context create remoteContext --docker host=ssh://smirnovlad@158.160.113.82
- Now, start the container with the remote context:
docker-compose --context remoteContext up -d
- To update, for example, the host of the context:
docker context update \
--docker "host=ssh://smirnovlad@158.160.113.82" \
remoteContext
- To remove the context:
docker context rm remoteContext
- Command to stop all containers:
docker stop $(docker ps -a -q)
- Command to remove all images:
docker system prune -a --volumes
- Devise more comprehensive tests (requests to the remote server, authentication, etc.)
- Transition to JWT tokens
- Add cryptographic dependencies
- Add SEO support
- Message notification outside the chat