Skip to content

Front-end for the Devcade website that allows members to view the game catalog and upload games.

License

Notifications You must be signed in to change notification settings

ComputerScienceHouse/devcade-website

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

devcade-website

Front-end for the Devcade website that allows members to view the game catalog and upload games.

Project Structure

This project follows a standard template for a Flask project. Below is the basic file structure of the project, with every file described other than those in the static/ folder (for brevity).

devcade-website
| src/
| | static/         // Static content (images, css, js)
| | templates/      // Header and content templates
| | | header.html   // Includes game block macro and header block macro
| | | game.html     // Game focus page
| | | catalog.html  // Game catalog page
| | | credits.html  // Game credits page (using game blocks)
| | | error.html    // Error page
| | | home.html     // Main page, includes project details
| | | upload.html   // Game upload page, including instructions
| | | profile.html  // User profile -- not implemented
| app.py            // Main file
| auth.py           // Helper functions for handling CSH auth
| config.py         // Environment variable getters
| init.py           // Initialization for flask project
| models.py         // User model
| envs.py           // Environment variable setters (Follows template described in Local Development section)

Local Development

If you would like to run this project using your local machine, first create a envs.py file in src/ with the following structure:

import os

os.environ['SERVER_NAME'] = 'localhost:8080'
os.environ['PREFERRED_URL_SCHEME'] = 'http'

os.environ["POSTGRESQL_USER"] = ""
os.environ["POSTGRESQL_PASSWORD"] = ""
os.environ["POSTGRESQL_IP"] = ""

os.environ["OIDC_CLIENT_SECRET"] = ""

os.environ["GOOGLE_OIDC_ISSUER"] = ""
os.environ["GOOGLE_OIDC_CLIENT_ID"] = ""
os.environ["GOOGLE_OIDC_CLIENT_SECRET"] = ""

os.environ["SECRET_KEY"]= ""
os.environ["DEVCADE_API_URI"] = ""
os.environ["FRONTEND_API_KEY"] = ""
os.environ["DEVCADE_IS_DEV"] = "" # "True" or "False"

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.

Running in a Container (Recommended)

It is recommended that when running locally, you run this project in a container using the provided Dockerfile.

To do so using Podman, run the following commands from the root of the project directory:

1. `podman build -t <image name of your choice ,i.e. lontronix/devcade> .`
2. `podman run -i -t -p 8080:8080 <the image name you specified in the previous command>`

Running without a container

Run the following commands:

pip3 install -r requirements.txt

cd src

flask run

Note: Because most contributors test this project using a container, if you have difficulties getting this project setup locally without a container it is less likely you'll be able to get help.