Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Kickstart backend #2

Merged
merged 5 commits into from
Dec 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 0 additions & 18 deletions .gitignore

This file was deleted.

3 changes: 3 additions & 0 deletions client/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ node_modules
dist
dist-ssr
*.local
.env

*.css.map

# Editor directories and files
.vscode/*
Expand Down
Empty file added client/public/DELETEME.txt
Empty file.
Empty file added resources/Conventions.md
Empty file.
4 changes: 4 additions & 0 deletions resources/ER-Diagram_Entities-Only.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions resources/ER-Diagram_No-Attribute.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/ER-Report.pdf
Binary file not shown.
Binary file added resources/Proposal-Report.pdf
Binary file not shown.
825 changes: 825 additions & 0 deletions resources/Schema-Diagram.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file added server/.env.example
Empty file.
37 changes: 37 additions & 0 deletions server/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

pids
*.pid
*.seed
.env
lib-cov
.nyc_output
.grunt
.lock-wscript
build/Release
jspm_packages
.npm
.node_repl_history
24 changes: 24 additions & 0 deletions server/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Server side

## Technologies

- JavaScript
- NodeJs
- Express

## Installation

```bash
cd server
npm install
```

## Usage

```bash
node app
```

## Endpoints

- TBD
Empty file added server/app.js
Empty file.
Empty file.
Loading