Skip to content

Commit

Permalink
WIP: modify name of repo
Browse files Browse the repository at this point in the history
  • Loading branch information
drondiodev committed Sep 23, 2024
1 parent 6497c62 commit 0d80216
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 23 deletions.
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ NODE_ENV=development
# DATABASE
DB_HOST=localhost
DB_USER=dbusername
DB_PASSWORD=nbpassword
DB_PASSWORD=dbpassword
DB_NAME=dbname
DB_PORT=5432
DATABASE_URL=postgresql://${DB_USER}:${DB_PASSWORD}@${DB_HOST}:${DB_PORT}/${DB_NAME}
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: pnpm run lint

- name: Build Docker image
run: docker build -t nextjs14cicd:latest .
run: docker build -t team-starter-nextjs:latest .

- name: Run Docker container
run: docker run -d -p 3000:3000 nextjs14cicd:latest
run: docker run -d -p 3000:3000 team-starter-nextjs:latest
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ jobs:
run: pnpm run build

- name: Build Docker image
run: docker build -t nextjs14cicd:latest .
run: docker build -t team-starter-nextjs:latest .

- name: Run Docker container
run: docker run -d -p 3000:3000 nextjs14cicd:latest
run: docker run -d -p 3000:3000 team-starter-nextjs:latest

- name: Placeholder for future deployment steps
run: |
Expand Down
28 changes: 14 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
# Drondiodev-template-starter
# TEAM DEVELOPMENT STARTER KIT

![](https://visitor-badge.laobi.icu/badge?page_id=drondiodev.nextjs14cicd)
![](https://visitor-badge.laobi.icu/badge?page_id=drondiodev.team-starter-nextjs)

# Drondiodev-template
![GitHub last commit](https://img.shields.io/github/last-commit/drondiodev/team-starter-nextjs)
![GitHub forks](https://img.shields.io/github/forks/drondiodev/team-starter-nextjs)
![GitHub Repo stars](https://img.shields.io/github/stars/drondiodev/team-starter-nextjs)
![GitHub watchers](https://img.shields.io/github/watchers/drondiodev/team-starter-nextjs)

![GitHub last commit](https://img.shields.io/github/last-commit/drondiodev/Drondiodev-template)
![GitHub forks](https://img.shields.io/github/forks/drondiodev/nextjs14cicd)
![GitHub Repo stars](https://img.shields.io/github/stars/drondiodev/nextjs14cicd)
![GitHub watchers](https://img.shields.io/github/watchers/drondiodev/nextjs14cicd)

nextjs14cicd est un template Next.js prêt à l'emploi, conçu pour vous permettre
de démarrer rapidement le développement de votre nouvelle application web. Il
intègre les meilleures pratiques et les dernières fonctionnalités de Next.js,
ainsi que des outils de développement essentiels pour améliorer votre
productivité.
TEAM DEVELOPMENT STARTER KIT est un template Next.js prêt à l'emploi, conçu pour
vous permettre de démarrer rapidement le développement de votre nouvelle
application web en équipe. Il intègre les meilleures pratiques et les dernières
fonctionnalités de Next.js, ainsi que des outils de développement essentiels
pour améliorer votre productivité.

## Fonctionnalités

Expand All @@ -36,6 +34,8 @@ productivité.
vérifications de lint et de formatage avant chaque commit.
- **Docker** :

- **Zod** :

## Utilisation

1. Clonez le dépôt :
Expand All @@ -53,7 +53,7 @@ ou
En utilisant `create-next-app` :

```bash
pnpm create next-app -e https://github.com/drondiodev/nextjs14cicd ts-pnpm
pnpm create next-app -e https://github.com/drondiodev/team-starter-nextjs ts-pnpm
```

2. Accédez au répertoire du projet :
Expand Down
2 changes: 1 addition & 1 deletion docker-compose-yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ version: '3.8'
services:
web:
build: .
image: nextjs14cicd:latest
image: team-starter-nextjs:latest
ports:
- '3000:3000'
1 change: 1 addition & 0 deletions env/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,6 @@ export const env = createEnv({
process.exit(1);
},
emptyStringAsUndefined: true,

experimental__runtimeEnv: process.env,
});
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "nextjs14cicd",
"name": "team-starter-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
Expand Down

0 comments on commit 0d80216

Please sign in to comment.