* build(deps): bump com.puppycrawl.tools:checkstyle in /server Bumps [com.puppycrawl.tools:checkstyle](https://github.com/checkstyle/checkstyle) from 10.20.1 to 10.20.2. - [Release notes](https://github.com/checkstyle/checkstyle/releases) - [Commits](https://github.com/checkstyle/checkstyle/compare/checkstyle-10.20.1...checkstyle-10.20.2) --- updated-dependencies: - dependency-name: com.puppycrawl.tools:checkstyle dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * build(deps): bump org.springframework.boot:spring-boot-starter-parent Bumps [org.springframework.boot:spring-boot-starter-parent](https://github.com/spring-projects/spring-boot) from 3.3.5 to 3.3.6. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v3.3.5...v3.3.6) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-starter-parent dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * docs: add cloud native compile command to tools * docs: improve tools for backend and scripts --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
37 lines
917 B
Bash
37 lines
917 B
Bash
#!/bin/bash
|
|
|
|
TARGET="$1"
|
|
|
|
if [ "$TARGET" == "back" ]; then
|
|
if [ -f "server/.env" ]; then
|
|
echo "Env file in place. Leaving..."
|
|
exit 0
|
|
fi
|
|
|
|
echo "Creating basic env file for database and back-end"
|
|
cd server
|
|
|
|
echo "POSTGRES_DB=postgres" >> .env
|
|
echo "POSTGRES_HOST=localhost" >> .env
|
|
echo "POSTGRES_USER=postgres" >> .env
|
|
echo "POSTGRES_PASSWORD=default" >> .env
|
|
echo "POSTGRES_PORT=5432" >> .env
|
|
echo "SERVER_SERVLET_CONTEXT_PATH=/" >> .env
|
|
echo "CORS_ALLOWED_ORIGINS=http://localhost:5000" >> .env
|
|
elif [ "$TARGET" == "front" ]; then
|
|
if [ -f "client/.env" ]; then
|
|
echo "Env file in place. Leaving..."
|
|
exit 0
|
|
fi
|
|
|
|
echo "Creating basic env file for the front-end app"
|
|
cd client
|
|
|
|
echo "VITE_BACKEND_SERVER=http://localhost:8585" >> .env
|
|
echo "VITE_BUILD=nightly" >> .env
|
|
else
|
|
echo "Wrong parameter..."
|
|
fi
|
|
|
|
echo "Done!"
|