-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
8,749 additions
and
298 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
name: Lint | ||
|
||
on: | ||
push: | ||
push: | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: '18.x' | ||
- name: Install dependencies | ||
run: yarn | ||
- name: Run ESLint | ||
run: npx eslint . | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: "18.x" | ||
- name: Install dependencies | ||
run: yarn | ||
- name: Run ESLint | ||
run: npx eslint . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
name: Prettier | ||
|
||
on: | ||
push: | ||
|
||
jobs: | ||
prettier: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: "18.x" | ||
- name: Install dependencies | ||
run: yarn | ||
- name: Run Prettier | ||
run: npx prettier --write . | ||
name: Prettier | ||
|
||
on: | ||
push: | ||
|
||
jobs: | ||
prettier: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: "18.x" | ||
- name: Install dependencies | ||
run: yarn | ||
- name: Run Prettier | ||
run: npx prettier --write . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
# API for Reflections | Projections 2024 | ||
|
||
Contributors: | ||
- Aydan Pirani | ||
- Divya Koya | ||
- Riya Patel | ||
- Jacob Chang | ||
- Alex Yang | ||
- Shreenija Daggavolu | ||
|
||
- Aydan Pirani | ||
- Divya Koya | ||
- Riya Patel | ||
- Jacob Chang | ||
- Alex Yang | ||
- Shreenija Daggavolu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
version: 0.0 | ||
os: linux | ||
files: | ||
- source: / | ||
destination: /home/ubuntu/rp-api | ||
file_exists_behavior: OVERWRITE | ||
hooks: | ||
BeforeInstall: | ||
- location: scripts/install_dependencies.sh | ||
timeout: 300 | ||
runas: root | ||
AfterInstall: | ||
- location: scripts/build.sh | ||
timeout: 300 | ||
runas: root | ||
ApplicationStart: | ||
- location: scripts/install_dependencies.sh | ||
timeout: 300 | ||
runas: root | ||
- location: scripts/reload_server.sh | ||
timeout: 300 | ||
runas: root | ||
version: 0.0 | ||
os: linux | ||
files: | ||
- source: / | ||
destination: /home/ubuntu/rp-api | ||
file_exists_behavior: OVERWRITE | ||
hooks: | ||
BeforeInstall: | ||
- location: scripts/install_dependencies.sh | ||
timeout: 300 | ||
runas: root | ||
AfterInstall: | ||
- location: scripts/build.sh | ||
timeout: 300 | ||
runas: root | ||
ApplicationStart: | ||
- location: scripts/install_dependencies.sh | ||
timeout: 300 | ||
runas: root | ||
- location: scripts/reload_server.sh | ||
timeout: 300 | ||
runas: root |
Oops, something went wrong.