Skip to content

Commit e3360f7

Browse files
committed
Initial commit: TypeScript MongoDB Accounting App
0 parents  commit e3360f7

File tree

18 files changed

+2373
-0
lines changed

18 files changed

+2373
-0
lines changed

.gitignore

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
# Dependencies
2+
node_modules/
3+
npm-debug.log*
4+
yarn-debug.log*
5+
yarn-error.log*
6+
7+
# Build outputs
8+
dist/
9+
build/
10+
11+
# Environment variables
12+
.env
13+
.env.local
14+
.env.development.local
15+
.env.test.local
16+
.env.production.local
17+
18+
# Logs
19+
logs
20+
*.log
21+
22+
# Runtime data
23+
pids
24+
*.pid
25+
*.seed
26+
*.pid.lock
27+
28+
# Coverage directory used by tools like istanbul
29+
coverage/
30+
31+
# nyc test coverage
32+
.nyc_output
33+
34+
# Uploaded files
35+
uploads/*
36+
!uploads/.gitkeep
37+
38+
# Node.js portable installation
39+
nodejs-portable/
40+
node-portable.zip
41+
42+
# OS generated files
43+
.DS_Store
44+
.DS_Store?
45+
._*
46+
.Spotlight-V100
47+
.Trashes
48+
ehthumbs.db
49+
Thumbs.db
50+
51+
# IDE
52+
.vscode/
53+
.idea/
54+
*.swp
55+
*.swo
56+
57+
# Temporary files
58+
*.tmp
59+
*.temp

README.md

Whitespace-only changes.

install-and-run.bat

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
@echo off
2+
echo Installing npm dependencies...
3+
npm install
4+
5+
echo.
6+
echo Building the project...
7+
npm run build
8+
9+
echo.
10+
echo Starting the development server...
11+
npm run dev

0 commit comments

Comments
 (0)