-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# sideprojectstarter | ||
Kickstart your full stack side project with a Spring Boot / PostgreSQL / Vue container setup. | ||
|
||
## Instructions | ||
|
||
### 1. Download and Install Docker | ||
|
||
- Download and install Docker for your operating system from the [Docker Downloads](https://www.docker.com/products/docker-desktop) page. | ||
|
||
### 2. Clone the Repository | ||
|
||
- Open a terminal or command prompt. | ||
- Navigate to the directory where you want to store your project. | ||
- Clone the "sideprojectstarter" repository from GitHub using the following command: | ||
|
||
`git clone https://github.com/sxflynn/sideprojectstarter.git` | ||
|
||
|
||
### 3. Start Containers | ||
|
||
- Change your working directory to the project folder: | ||
|
||
`cd sideprojectstarter` | ||
|
||
- Start the Docker containers using `docker-compose`: | ||
|
||
`docker-compose up` | ||
|
||
|
||
### 4. Access the Vue Project | ||
|
||
- Once the containers are up and running, your Vue.js project should be accessible at `localhost:5173` in your web browser. | ||
|
||
Now, you have successfully set up your full stack side project with Spring Boot, PostgreSQL, and Vue.js using Docker containers. You can start developing your application by editing the code in the project directory. |