Creating Nertivia server from scratch. The current version is here: https://github.com/supertiger1234/Nertivia-Server
- Express
- Socket.IO
- MongoDB (Mongoose)
- Redis
- Prisma
- Fork the repo
- Clone the forked GitHub repo using
git clone docker-compose --build -d- Access your server at http://localhost
Step 4,5 and 5,6 can be skipped if you are already running your Redis and PostgreSQL server elsewhere or already running it.
- Fork the repo
- Clone the forked GitHub repo using
git clone - Get the Redis image using
docker pull redis:6.2.6 - Run Redis using
docker run --name nertivia-redis -d redis:6.2.6 - Get the PostgreSQL image using
docker pull mongo:5.0.5 - Run PostgreSQL using
docker run --name nertivia-mongo -p 27107:27107 -d mongo:5.0.5 - Run the code using
npm run start:build