A collaborative, infinite pixel canvas application.
Follow these instructions to get the development environment running.
Run the PostgreSQL database in a Docker container. From the project root:
docker-compose up -dOnce the database is running, apply the database schema migrations.
cd backend
npx prisma migrate dev
cd .. In a new terminal, navigate to the backend directory, install dependencies, and start the server.
cd backend
npm install
npm run devThe backend will be running at http://localhost:3001.
In a separate terminal, navigate to the frontend directory, install dependencies, and start the application.
cd frontend
npm install
npm run devOpen your browser and navigate to http://localhost:3000.
Built with ❤️ for 🌸