Skip to content
Open

2022 #25

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@

# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
indent_style = space
indent_size = 2
tab_width = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
9 changes: 9 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
PORT=4000
HOST="0.0.0.0"
REDIS_URL="//0.0.0.0:6379"
ADMINS=["__YOUR_GH_USERNAME__"]
GITHUB_CLIENT_ID="____"
GITHUB_CLIENT_SECRET="____"
GITHUB_REDIRECT_URI="http://0.0.0.0:4000/oauth"
NEXTAUTH_URL=https://example.com
NEXTAUTH_SECRET=c3e937939d98caf735ae591abdd4b46d
17 changes: 17 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Deploy

on:
push:
branches:
- 2022

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: akhileshns/heroku-deploy@v3.12.12 # This is the action
with:
heroku_api_key: ${{secrets.HEROKU_API_KEY}}
heroku_app_name: "stage-control" #Must be unique in Heroku
heroku_email: "nec@shell8.net"
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,5 @@ typings/

# next.js build output
.next
build
server
1 change: 1 addition & 0 deletions Procfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
web: npm start
17 changes: 15 additions & 2 deletions colors.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,26 @@ export default {
'purple',
'white',
'black',
'skyblue',
'macncheese',
'lilac',
'cyan',
'jazzberry',
'heatherblue',
],
red: '#DB3127',
blue: '#3580C2',
yellow: '#f2de48',
green: '#43a447',
white: '#ffffff',
black: '#000000',
orange: '#ff8800',
purple: '#702cd6',
orange: '#EC6E60',
purple: '#663399',

skyblue: '#87CEEB',
macncheese: '#ffbd88',
lilac: '#C8A2C8',
cyan: '#0EB8BE',
jazzberry: '#a50b5e',
heatherblue: '#6B83A4'
}
90 changes: 0 additions & 90 deletions components/Colors/index.js

This file was deleted.

55 changes: 0 additions & 55 deletions components/Link.js

This file was deleted.

59 changes: 0 additions & 59 deletions components/PresentationStates/index.js

This file was deleted.

5 changes: 0 additions & 5 deletions components/Route.js

This file was deleted.

47 changes: 0 additions & 47 deletions components/Speakers/index.js

This file was deleted.

Loading