ft_transcendence is the last project in the commen core of 1337 School (42Network). It’s a Pong Multiplayer Game.
- Pong Multiplayer Online Game
- Direct and group chat (with diffrent permissions and configs)
- Profile that contains: achivments and stats
- docker
- docker-compose
git clone https://github.com/L3iyanin/ft_transcendence.git
cp .env.sample .env # and change the values by your own
make
make fclean
make up
To see the frontend 127.0.0.1:80
.
To see the backend 127.0.0.1:80/api
.
The page will reload if you make edit the frontend folder.
and also the backend will reload if you make edit the backend folder.
- request come from browser to nginx server.
- if the request start with
/api
or/socket.io
it will be redirected to the backend container and will be served by nestjs. - if the request not start with
/api
and/socket.io
it will be redirected to the frontend container and will be served by react.