Skip to content

Commit

Permalink
Merge pull request #2 from CMP26Projects/kickstart-backend
Browse files Browse the repository at this point in the history
Kickstart backend
  • Loading branch information
akramhany authored Dec 8, 2023
2 parents b63cd1b + 89aeb29 commit 680e79d
Show file tree
Hide file tree
Showing 21 changed files with 3,300 additions and 18 deletions.
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

0 comments on commit 680e79d

Please sign in to comment.