Skip to content

Commit 36e4252

Browse files
authored
Merge pull request #30 from ComputerScienceHouse/willnilges/summarize
Summarize required resources for API and Website
2 parents 7a96ca7 + 190110d commit 36e4252

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

docs/Hardware/installing-dcu.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ From the onboard directory, initialize the xlogin submodule by running:
105105
git submodule update --init --recursive
106106

107107
To build the onboard program and put it in the correct place, run
108-
<!-- TODO Update idiot naming
108+
<!-- TODO Update idiot naming -->
109109
./idiot/update_onboard.sh
110110
cp idiot/.xinitrc /home/devcade
111111
mkdir -p /home/devcade/.config/openbox && cp idiot/rc.xml /home/devcade/.config/openbox

docs/Internals/API/README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# API
22

3+
The API is used to interact with the game library by the cabinet and the website. It requires a few resources:
4+
- S3 Buckets
5+
- Game Images
6+
- Game Saves
7+
- Databases
8+
- Postgres
9+
- For storing information about games
10+
11+
Source code can be found at: https://github.com/ComputerScienceHouse/devcade-api
12+
313
- Download project and run `npm install`
414
- Use `npm run dev` to start the development server.
515
- If a `.env` file does not currently exist in the repo root directory, create one with:
@@ -150,4 +160,4 @@ const upload = async () => {
150160
throw err;
151161
}
152162
}
153-
```
163+
```

docs/Internals/Website/README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# devcade-website
22
Front-end for the Devcade website that allows members to view the game catalog and upload games.
33

4+
Requires a database for storing session information. The goal of the userDB was to keep track of user data that we might add to the site at a later time. It is not currently used.
5+
6+
Source code can be found at https://github.com/ComputerScienceHouse/devcade-website
7+
48
# How to Run
59
`pip3 install -r requirements.txt`
610

@@ -49,4 +53,4 @@ os.environ["DEVCADE_DB_URI"] = ""
4953
os.environ["DEVCADE_API_URI"] = ""
5054
```
5155

52-
Note that this is just a template for the `envs.py` file. You will need to get these secrets from an RTP or Devcade developer.
56+
Note that this is just a template for the `envs.py` file. You will need to get these secrets from an RTP or Devcade developer.

0 commit comments

Comments
 (0)