Skip to content

Commit 7748bb8

Browse files
move files to server directory (#14)
* move files to server directory * Fix ci * oops * Cleanup * Another fix
1 parent 4b5deb0 commit 7748bb8

26 files changed

+19
-11
lines changed

.github/CODEOWNERS

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @echang594 @jennymar
1+
* @echang594 @jennymar @alexzhang1618

.github/workflows/ci.yml renamed to .github/workflows/backend-lint-test.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Linting and Testing
1+
name: Backend - Linting and Testing
22
on:
33
pull_request:
44
branches:
@@ -16,10 +16,13 @@ jobs:
1616
node-version: '20'
1717

1818
- name: Install dependencies
19+
working-directory: ./server
1920
run: yarn install --frozen-lockfile
2021

2122
- name: Run ESLint
23+
working-directory: ./server
2224
run: yarn lint
25+
2326
test:
2427
runs-on: ubuntu-latest
2528
needs: lint
@@ -33,7 +36,9 @@ jobs:
3336
node-version: '20'
3437

3538
- name: Install dependencies
36-
run: yarn install
39+
working-directory: ./server
40+
run: yarn install --frozen-lockfile
3741

3842
- name: Run tests
43+
working-directory: ./server
3944
run: yarn test

README.md

+4-8
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
1-
# hackathon-portal
1+
## Hackathon Portal
22

3-
## Setup
4-
1. Copy `.env.example` to `.env` and fill in the values
5-
1. Start up Docker Desktop
6-
2. Spin up Postgres:
7-
```bash
8-
docker-compose up
9-
```
3+
# Repo Structure
4+
- `server`: backend
5+
- `client`: frontend
File renamed without changes.
File renamed without changes.
File renamed without changes.

.nvmrc renamed to server/.nvmrc

File renamed without changes.
File renamed without changes.
File renamed without changes.

server/README.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
## Setup
2+
1. Copy `.env.example` to `.env` and fill in the values
3+
1. Start up Docker Desktop
4+
2. Spin up Postgres:
5+
```bash
6+
docker-compose up
7+
```
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)