This is the codebase for Alchemy made with NextJs (React framework) for the front-end and Express mongo for the back-end.
user: [email protected] pwd: demo1234
Important: Fork this repository and clone your fork Then, install the node modules for the back-end and front-end:
cd backend/nodeServer
npm install
cd ../../alchemy-20-front/
npm install
Get the .env files from maintainers and put them in the front-end and back-end folders
Make sure mongodb service is running.
cd backend/nodeServer
npm run start
Open another terminal and run
mongod
Server will start running in port 4700
Note: Make sure you have docker and mongo service running
cd backend/nodeServer
docker-compose up
Server will start running in port 5700
cd alchemy-20-front/
npm run dev
Open http://localhost:3612 with your browser to see the website.
- Fork this repository
- Clone your fork and start working in it.
- Create a new branch for every major feature/update.
- Give Pull requests from your forked repository
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.
- Learn Express and Mongoose