Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Misc #135

Draft
wants to merge 12 commits into
base: main
Choose a base branch
from
Draft

Misc #135

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
63 changes: 30 additions & 33 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,38 +1,35 @@
{
"name": "RGS Dev Container",
"build": {
"dockerfile": "./Dockerfile",
"context": ".."
},
"customizations": {
"vscode": {
"settings": {},
"extensions": [
"jetpack-io.devbox",
"GitHub.copilot",
"GitHub.copilot-chat",
"GitHub.copilot-labs",
"rust-lang.rust-analyzer",
"svelte.svelte-vscode",
"VisualStudioExptTeam.vscodeintellicode",
"alex-young.pm2-explorer",
"esbenp.prettier-vscode",
"dbaeumer.vscode-eslint",
"ms-azuretools.vscode-docker",
"golang.go"
]
}
},
"remoteUser": "devbox",
"portsAttributes": {
"5656": {
"label": "hydra_gateway"
"name": "RGS Dev Container",
"build": {
"dockerfile": "./Dockerfile",
"context": ".."
},
"5173": {
"label": "web"
"customizations": {
"vscode": {
"settings": {},
"extensions": [
"jetpack-io.devbox",
"GitHub.copilot",
"GitHub.copilot-chat",
"GitHub.copilot-labs",
"rust-lang.rust-analyzer",
"svelte.svelte-vscode",
"VisualStudioExptTeam.vscodeintellicode",
"alex-young.pm2-explorer",
"esbenp.prettier-vscode",
"dbaeumer.vscode-eslint",
"ms-azuretools.vscode-docker",
"golang.go"
]
}
},
"4000": {
"label": "hasura"
"remoteUser": "devbox",
"portsAttributes": {
"5656": {
"label": "hydra_gateway"
},
"5173": {
"label": "web"
}
}
}
}
4 changes: 0 additions & 4 deletions .env
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
PUBLIC_GRAPHQL_ENDPOINT=http://localhost:4000/v1/graphql
PUBLIC_GRAPHQL_WS_ENDPOINT=ws://localhost:4000/v1/graphql
GRAPHQL_ADMIN_SECRET=uorocketry

DATABASE_URL="postgres://postgres:postgres@localhost:5432/postgres"
POSTGRES_DB="postgres"
POSTGRES_USER="postgres"
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,6 @@ build/**

# Temp Folder
tmp

# db data
/data.sqld
Loading