This project demonstrates a full-stack application integrating Svelte for the frontend, NestJS for the backend, and Spring Boot for additional backend services.
Ensure you have the following installed on your system:
frontend/
: Contains the Svelte application.backend-nest/
: Contains the NestJS application.backend-spring/
: Contains the Spring Boot application.git clone https://gitingest.com/thesophisticateddev/Svelte-Spring-Nest.git
cd Svelte-Spring-Nest
cd frontend
npm install
npm run dev
This will start the Svelte development server, typically accessible at http://localhost:5000
.
cd ../backend-nest
npm install
npm run start
The NestJS server will start, usually accessible at http://localhost:3000
.
cd ../backend-spring
mvn clean install
mvn spring-boot:run
The Spring Boot application will start, typically accessible at http://localhost:8080
.
Access the frontend at http://localhost:5000
, which will interact with the backend services as configured.
For any issues or contributions, please refer to the repository's issue tracker or contact the maintainer.