Merge branch feature/template into master

This commit is contained in:
2025-12-02 12:21:45 +09:00
6 changed files with 5 additions and 80 deletions

4
.gitignore vendored
View File

@@ -45,8 +45,8 @@ $RECYCLE.BIN/
.vagrant .vagrant
Vagrantfile Vagrantfile
.docker-compose.yml docker-compose*.yml
.DockerFile Dockerfile
#------------------------- #-------------------------
# Temporary Files # Temporary Files

View File

@@ -8,3 +8,6 @@ use CodeIgniter\Router\RouteCollection;
$routes->get('/', 'Home::index'); $routes->get('/', 'Home::index');
$routes->get('/hello', 'Home::hello'); $routes->get('/hello', 'Home::hello');
$routes->get('/dashboard', 'Main::dashboard');

39
confirms/.gitignore vendored
View File

@@ -1,39 +0,0 @@
*/config/development
*/logs/log-*.php
!*/logs/index.html
*/cache/*
!*/cache/index.html
!*/cache/.htaccess
user_guide_src/build/*
user_guide_src/cilexer/build/*
user_guide_src/cilexer/dist/*
user_guide_src/cilexer/pycilexer.egg-info/*
#codeigniter 3
application/logs/*
!application/logs/index.html
!application/logs/.htaccess
/vendor/
# 1. VS Code 설정
.vscode/
# 2. 빌드 결과물 및 임시 파일
/dist
/build
/out
*.log
*.tmp
# 3. Node.js (가장 흔하게 사용되는 예시 중 하나)
/node_modules
# 4. 운영체제 파일
.DS_Store
Thumbs.db
# 5. 민감 정보 파일
.env
.history/

View File

@@ -1 +0,0 @@
여기 작업 하면 어떻게 되나?

View File

@@ -1,6 +0,0 @@
## confirms
> Creator: jjstyle00
> Date: 2025/12/01
## Description
* confirms에 대한 설명을 작성하세요

View File

@@ -1,32 +0,0 @@
version: "3.9"
services:
web:
build: .
container_name: ci4-web
ports:
- "8800:80" # localhost:8080 -> Apache
volumes:
- ./:/var/www/html # 현재 CI4 프로젝트 전체를 컨테이너에 마운트
environment:
CI_ENVIRONMENT: development
depends_on:
- db
restart: unless-stopped
db:
image: mysql:8.0
container_name: ci4-mysql
environment:
MYSQL_ROOT_PASSWORD: 123456
MYSQL_DATABASE: ci4db
MYSQL_USER: ci4user
MYSQL_PASSWORD: ci41234
ports:
- "3308:3306" # 호스트 3308 포트로 MySQL 접속
volumes:
- ci4-db-data:/var/lib/mysql
restart: unless-stopped
volumes:
ci4-db-data: