Skip to content

Commit

Permalink
Move api server settings to repo root
Browse files Browse the repository at this point in the history
  • Loading branch information
Ifycode committed Jul 12, 2024
1 parent 5606c21 commit b6fa487
Show file tree
Hide file tree
Showing 18 changed files with 2,523 additions and 922 deletions.
File renamed without changes.
File renamed without changes.
54 changes: 51 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,52 @@
.vscode
node_modules
# See http://help.github.com/ignore-files/ for more about ignoring files.

# client generated config
config.generated.json

#.env file
.env
config.generated.json

# dependencies
/node_modules

# compiled output
/dist
/tmp
/out-tsc
# Only exists if Bazel was run
/bazel-out

# profiling files
chrome-profiler-events*.json
speed-measure-plugin*.json

# IDEs and editors
/.idea
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace

# IDE - VSCode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
.history/*

# misc
/.sass-cache
/connect.lock
/coverage
/libpeerconnection.log
npm-debug.log
yarn-error.log
testem.log
/typings

# System Files
.DS_Store
Thumbs.db
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion server/src/server.ts → backend-server/server.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { app as app} from './app'


const PORT = process.env.PORT || '3000';
const PORT = process.env.PORT || 3000;

app.listen(PORT, () => {
console.log(`Server is running on port ${PORT}`);
Expand Down
Loading

0 comments on commit b6fa487

Please sign in to comment.