Skip to content

Commit 6e78c2c

Browse files
committed
Работа с Базой Данных из Qt
0 parents  commit 6e78c2c

4 files changed

Lines changed: 96 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ master, main ]
6+
pull_request:
7+
branches: [ master, main ]
8+
workflow_dispatch:
9+
10+
concurrency:
11+
group: ${{ github.workflow }}-${{ github.ref }}
12+
cancel-in-progress: true
13+
14+
jobs:
15+
build:
16+
runs-on: ubuntu-latest
17+
timeout-minutes: 10
18+
19+
steps:
20+
- uses: actions/checkout@v4
21+
22+
- name: Check repository
23+
run: |
24+
echo "## Repository Contents" >> $GITHUB_STEP_SUMMARY
25+
echo '```' >> $GITHUB_STEP_SUMMARY
26+
ls -la >> $GITHUB_STEP_SUMMARY
27+
echo '```' >> $GITHUB_STEP_SUMMARY
28+
echo "Repository checked out successfully"

.gitignore

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# C++ objects and libs
2+
3+
*.slo
4+
*.lo
5+
*.o
6+
*.a
7+
*.la
8+
*.lai
9+
*.so
10+
*.dll
11+
*.dylib
12+
13+
# Qt-es
14+
15+
/.qmake.cache
16+
/.qmake.stash
17+
*.pro.user
18+
*.pro.user.*
19+
*.qbs.user
20+
*.qbs.user.*
21+
*.moc
22+
moc_*.cpp
23+
qrc_*.cpp
24+
ui_*.h
25+
Makefile*
26+
*build-*
27+
28+
# QtCreator
29+
30+
*.autosave
31+
32+
#QtCtreator Qml
33+
*.qmlproject.user
34+
*.qmlproject.user.*

CLAUDE.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Qt_SQLBrowser — Работа с Базой Данных из Qt
2+
3+
## About
4+
5+
Qt desktop application demonstrating widgets, signals/slots, and cross-platform GUI development.
6+
7+
## Prerequisites
8+
9+
- See project documentation
10+
11+
## Build & Run
12+
13+
```bash
14+
# See project files for build instructions
15+
```
16+
17+
## Development Guidelines
18+
19+
### Code Style
20+
- Follow standard unknown conventions
21+
- Keep code clean and well-organized
22+
- Use meaningful variable and method names
23+
24+
### Git Workflow
25+
- Write clear, descriptive commit messages
26+
- One logical change per commit
27+
- Test before committing
28+
29+
### Testing
30+
- Write tests for new functionality
31+
- Run the full test suite before pushing
32+
- Keep tests focused and independent

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Qt_SQLBrowser
2+
Работа с Базой Данных из Qt

0 commit comments

Comments
 (0)