Skip to content

Commit dc309cc

Browse files
Migrating app to nextjs
1 parent bcfc88a commit dc309cc

89 files changed

Lines changed: 7469 additions & 7535 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.eslintrc.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": ["next/core-web-vitals", "prettier"]
3+
}

.github/CODEOWNERS

Lines changed: 0 additions & 5 deletions
This file was deleted.

.github/workflows/deploy-digital-ocean.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name: Digital Ocean deployment
33
on:
44
push:
55
paths:
6-
- "backend/**"
6+
- 'backend/**'
77
branches:
8-
- "main"
8+
- 'main'
99

1010
jobs:
1111
setup-build-publish-deploy:

.gitignore

Lines changed: 34 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,35 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# next.js
12+
/.next/
13+
/out/
14+
15+
# production
16+
/build
17+
18+
# misc
119
.DS_Store
2-
.env
3-
secrets/
4-
node_modules/
20+
*.pem
21+
22+
# debug
23+
npm-debug.log*
24+
yarn-debug.log*
25+
yarn-error.log*
26+
27+
# local env files
28+
.env*.local
29+
30+
# vercel
31+
.vercel
32+
33+
# typescript
34+
*.tsbuildinfo
35+
next-env.d.ts

.prettierignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
node_modules
2+
.next
3+
out
4+
public
5+
.env*

.prettierrc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"semi": true,
3+
"trailingComma": "all",
4+
"singleQuote": true,
5+
"printWidth": 80,
6+
"tabWidth": 2
7+
}

README.md

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,3 @@
11
# AppDev Status Platform
2-
This repository contains the code for AppDev's very own status platform, designed to showcase which of our apps are currently down, in maintenance, and up and running. The platform also allows users to subscribe to receive updates whenever an app's status changes.
3-
4-
## Developers
5-
This repository was created and is maintained by:
6-
- Archit Mehta ([@Archit404Error](https://github.com/archit404error))
7-
- Vin Bui ([@vinnie4k](https://github.com/vinnie4k))
8-
- Zach Seidner ([@zachseidner1](https://github.com/zachseidner1))
92

10-
## Designers
11-
This website was designed by:
12-
- Liam Du
13-
14-
## Getting Started
15-
Navigate to the `backend/` directory to view instructions on how to run the project backend. The frontend is built in Next.js and can be started using the standard Next command (via `yarn start` or `yarn dev`). You should also update the backend url in the `frontend/constants.ts` to point the local backend process on your computer when running the project locally.
3+
This repository contains the code for AppDev's very own status platform, designed to showcase which of our apps are currently down, in maintenance, and up and running. The platform also allows users to subscribe to receive updates whenever an app's status changes.

backend/.envtemplate

Lines changed: 0 additions & 4 deletions
This file was deleted.

backend/.prettierrc

Lines changed: 0 additions & 22 deletions
This file was deleted.

backend/Dockerfile

Lines changed: 0 additions & 12 deletions
This file was deleted.

0 commit comments

Comments
 (0)