You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/CONTRIBUTING.MD
+11-29Lines changed: 11 additions & 29 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ This document plans to outline the following for _all_ contributors of the CodeD
4
4
5
5
### Table of Contents
6
6
7
-
1.[Chain of Command](#chain-of-command)
7
+
1.[Leadership](#leadership)
8
8
1.[Git Flow](#git-flow)
9
9
-[Workflow Overview](#Overview)
10
10
-[Available Issues](#Available-Issues)
@@ -18,7 +18,7 @@ This document plans to outline the following for _all_ contributors of the CodeD
18
18
19
19
<br/>
20
20
21
-
# Chain of Command
21
+
# Leadership
22
22
23
23
The CodeDevils Website project managers are Pita Sherwood ([@PitaFLAME](https://github.com/PitaFLAME)) and Frankie Lin ([@frankjlin16](https://github.com/frankjlin16)). They control the day-to-day operation of this project, with oversight and policy dictated by the CodeDevil Officers.
24
24
@@ -94,48 +94,24 @@ The `dev` branch is where all Pull Requests should point to. When creating a ne
94
94
95
95
Alternatively, you can install both requirements with a package manager - [homebrew](https://brew.sh/) (macOS) or [chocolatey](https://chocolatey.org/) (Windows).
96
96
97
-
## Environment Variables
98
-
99
-
You need to create a `.env` file in root directory with the following environment variables:
To aquire the **discord client id and secret**, you need to create a new application through the [discord developer portal](https://discord.com/developers/applications). Refer to [NextAuth's documentation](https://next-auth.js.org/providers/discord) for additional information.
116
-
117
97
## Getting Started
118
98
119
-
Once you have the local environment variables set, it is time to install the packages/dependencies.
99
+
Once you have node.js and a package manager installed, it is time to install the packages/dependencies.
120
100
121
101
```
122
102
pnpm install
123
103
```
124
104
125
-
Once the packages/dependencies have been installed, you need to initialize the database with `prisma`.
126
-
127
-
```
128
-
pnpm prisma db push
129
-
```
130
-
131
105
Now you can start the development server with the following command:
132
106
133
107
```
134
108
pnpm dev
135
109
```
110
+
Any changes you make to the code will be reflected in your local deployment.
0 commit comments