Skip to content

Commit 2e1da8e

Browse files
committed
feat: rename project to TalentPulse
1 parent e8c8cfe commit 2e1da8e

File tree

6 files changed

+23
-23
lines changed

6 files changed

+23
-23
lines changed

.env.ci-tests

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
APP_NAME=Skilltree
1+
APP_NAME=TalentPulse
22
APP_ENV=local
33
APP_KEY=base64:xc00huj08Ru0P59Os7q/ceqOlcjasFfugAMWs0L0pDM=
44
APP_DEBUG=true
5-
APP_URL=https://skilltree-backend.localhost
5+
APP_URL=https://api.talentpulse.localhost
66

77
LOG_CHANNEL=stack
88
LOG_DEPRECATIONS_CHANNEL=null
@@ -11,7 +11,7 @@ LOG_LEVEL=debug
1111
DB_CONNECTION=mysql
1212
DB_HOST=127.0.0.1
1313
DB_PORT=3306
14-
DB_DATABASE=skilltree
14+
DB_DATABASE=talentpulse
1515
DB_USERNAME=root
1616
DB_PASSWORD=password
1717

.env.local

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
APP_NAME=Skilltree
1+
APP_NAME=TalentPulse
22
APP_ENV=local
33
APP_KEY=
44
APP_DEBUG=true
5-
APP_URL=https://skilltree-backend.localhost
5+
APP_URL=https://api.talentpulse.localhost
66

77
LOG_CHANNEL=stack
88
LOG_DEPRECATIONS_CHANNEL=null
@@ -11,9 +11,9 @@ LOG_LEVEL=debug
1111
DB_CONNECTION=mysql
1212
DB_HOST=mysql
1313
DB_PORT=3306
14-
DB_DATABASE=skilltree
15-
DB_USERNAME=skilltree
16-
DB_PASSWORD=skilltree
14+
DB_DATABASE=talentpulse
15+
DB_USERNAME=talentpulse
16+
DB_PASSWORD=talentpulse
1717

1818
BROADCAST_DRIVER=log
1919
CACHE_DRIVER=file

.env.local-tests

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
APP_NAME=Skilltree
1+
APP_NAME=TalentPulse
22
APP_ENV=local
33
APP_KEY=base64:xc00huj08Ru0P59Os7q/ceqOlcjasFfugAMWs0L0pDM=
44
APP_DEBUG=true
@@ -11,9 +11,9 @@ LOG_LEVEL=debug
1111
DB_CONNECTION=mysql
1212
DB_HOST=mysql
1313
DB_PORT=3306
14-
DB_DATABASE=skilltree
15-
DB_USERNAME=skilltree
16-
DB_PASSWORD=skilltree
14+
DB_DATABASE=talentpulse
15+
DB_USERNAME=talentpulse
16+
DB_PASSWORD=talentpulse
1717

1818
BROADCAST_DRIVER=log
1919
CACHE_DRIVER=file

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
env:
1818
MYSQL_ALLOW_EMPTY_PASSWORD: false
1919
MYSQL_ROOT_PASSWORD: password
20-
MYSQL_DATABASE: skilltree
20+
MYSQL_DATABASE: talentpulse
2121
ports:
2222
- 3306/tcp
2323
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Skilltree backend application
1+
# TalentPulse backend API
22

3-
> Main backend application to service the business needs of the Skilltree learning tool
3+
> Main backend application to service the business needs of the TalentPulse learning tool
44
5-
This repository contains the codebase that powers the Skilltree learning tool for students. It's currently in development as part of a group challenge of Fontys Hogeschool HBO-ICT OvP. This application is not the outcome of the group, but rather an experiment of Cyril to gain experience of Domain Driven Design (DDD) within the Laravel PHP framework technology stack.
5+
This repository contains the codebase that powers the TalentPulse learning tool for students. It's currently in development as part of a group challenge of Fontys Hogeschool HBO-ICT OvP. This application is not the outcome of the group, but rather an experiment of Cyril to gain experience of Domain Driven Design (DDD) within the Laravel PHP framework technology stack.
66

77
## Documentation
88

docker-compose.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -32,20 +32,20 @@ services:
3232
labels:
3333
- "traefik.enable=true"
3434
- "traefik.docker.network=traefik-gateway"
35-
- "traefik.http.routers.skilltree-backend-nginx.rule=Host(`api.talentpulse.localhost`)"
36-
- "traefik.http.routers.skilltree-backend-nginx.priority=1"
37-
- "traefik.http.routers.skilltree-backend-nginx.entrypoints=https"
38-
- "traefik.http.routers.skilltree-backend-nginx.tls=true"
35+
- "traefik.http.routers.talentpulse-backend-nginx.rule=Host(`api.talentpulse.localhost`)"
36+
- "traefik.http.routers.talentpulse-backend-nginx.priority=1"
37+
- "traefik.http.routers.talentpulse-backend-nginx.entrypoints=https"
38+
- "traefik.http.routers.talentpulse-backend-nginx.tls=true"
3939

4040
mysql:
4141
image: mysql/mysql-server:8.0
4242
command: --max_allowed_packet=32505856
4343
working_dir: /application
4444
environment:
45-
MYSQL_DATABASE: skilltree
45+
MYSQL_DATABASE: talentpulse
4646
MYSQL_ROOT_PASSWORD: root
47-
MYSQL_USER: skilltree
48-
MYSQL_PASSWORD: skilltree
47+
MYSQL_USER: talentpulse
48+
MYSQL_PASSWORD: talentpulse
4949
volumes:
5050
- mysql:/var/lib/mysql
5151
- ./docker/mysql/init:/docker-entrypoint-initdb.d

0 commit comments

Comments
 (0)