eGator financeverification system
Note:: Ensure you have docker and docker-compose installed.
git clone https://github.com/teemezzy/backend-api
cd into the project directory and run the following command
docker-compose build
docker-compose up
Go to http://localhost:3000
Go to http://localhost:8000/docs#/
General Notes:
- Frontend is built using Next.js. See https://nextjs.org/docs for more information.
- Backend is built using FastAPI. See https://fastapi.tiangolo.com/ for more information.
- The backend is configured to run on port 8000. If you want to change this, you can do so in the docker-compose.yml file.
- The frontend is configured to run on port 3000. If you want to change this, you can do so in the docker-compose.yml file.
- Auto-reload is enabled for both the frontend and backend. This means that any changes you make to the code will be reflected in the browser without having to restart the docker container. The backend will reload automatically as soon as you save a file.