Skip to content

Commit

Permalink
Rename repo (#50)
Browse files Browse the repository at this point in the history
* LFS additions I guess

* repo renaming

* remove auth
  • Loading branch information
davorrunje committed Aug 22, 2024
1 parent 42be2e2 commit 81bb46b
Show file tree
Hide file tree
Showing 14 changed files with 72 additions and 81 deletions.
6 changes: 3 additions & 3 deletions .devcontainer/python-3.10/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
"dockerComposeFile": [
"./docker-compose.yml"
],
"service": "python-3.10-fastagencyapi",
"service": "python-3.10-fastagency",
"forwardPorts": [
"${containerEnv:CONTAINER_PREFIX}-nats-py310-fastagencyapi:9222"
"${containerEnv:CONTAINER_PREFIX}-nats-py310-fastagency:9222"
],
"shutdownAction": "stopCompose",
"workspaceFolder": "/workspaces/fastagencyapi",
"workspaceFolder": "/workspaces/fastagency",
// "runArgs": [],
"remoteEnv": {},
"features": {
Expand Down
30 changes: 15 additions & 15 deletions .devcontainer/python-3.10/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
version: '3'

services:
python-3.10-fastagencyapi: # nosemgrep
python-3.10-fastagency: # nosemgrep
image: mcr.microsoft.com/devcontainers/python:3.10
container_name: $USER-python-3.10-fastagencyapi
container_name: $USER-python-3.10-fastagency
volumes:
- ../../:/workspaces/fastagencyapi:cached
- ../../:/workspaces/fastagency:cached
command: sleep infinity
environment:
- DATABASE_URL=postgresql://admin:password@${USER}-postgres-py310-fastagencyapi:5432/fastagency
- PY_DATABASE_URL=postgresql://admin:password@${USER}-postgres-py310-fastagencyapi:5432/pyfastagency
- NATS_URL=nats://${USER}-nats-py310-fastagencyapi:4222
- DATABASE_URL=postgresql://admin:password@${USER}-postgres-py310-fastagency:5432/fastagency
- PY_DATABASE_URL=postgresql://admin:password@${USER}-postgres-py310-fastagency:5432/pyfastagency
- NATS_URL=nats://${USER}-nats-py310-fastagency:4222
env_file:
- ../devcontainer.env
networks:
- fastagencyapi-network
nats-fastagencyapi: # nosemgrep
- fastagency-network
nats-fastagency: # nosemgrep
image: nats:latest
container_name: $USER-nats-py310-fastagencyapi
container_name: $USER-nats-py310-fastagency
# ports:
# - "${PORT_PREFIX}4222:4222"
# - "${PORT_PREFIX}9222:9222"
Expand All @@ -27,19 +27,19 @@ services:
env_file:
- ../devcontainer.env
networks:
- fastagencyapi-network
postgres-fastagencyapi: # nosemgrep
- fastagency-network
postgres-fastagency: # nosemgrep
image: postgres:latest
container_name: $USER-postgres-py310-fastagencyapi
container_name: $USER-postgres-py310-fastagency
environment:
POSTGRES_USER: admin
POSTGRES_PASSWORD: password # pragma: allowlist secret
POSTGRES_DB: fastagency
# ports:
# - "${PORT_PREFIX}5432:5432"
networks:
- fastagencyapi-network
- fastagency-network

networks:
fastagencyapi-network:
name: "${USER}-fastagencyapi-network"
fastagency-network:
name: "${USER}-fastagency-network"
6 changes: 3 additions & 3 deletions .devcontainer/python-3.11/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
"dockerComposeFile": [
"./docker-compose.yml"
],
"service": "python-3.11-fastagencyapi",
"service": "python-3.11-fastagency",
"forwardPorts": [
"${containerEnv:CONTAINER_PREFIX}-nats-py311-fastagencyapi:9222"
"${containerEnv:CONTAINER_PREFIX}-nats-py311-fastagency:9222"
],
"shutdownAction": "stopCompose",
"workspaceFolder": "/workspaces/fastagencyapi",
"workspaceFolder": "/workspaces/fastagency",
// "runArgs": [],
"remoteEnv": {},
"features": {
Expand Down
30 changes: 15 additions & 15 deletions .devcontainer/python-3.11/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
version: '3'

services:
python-3.11-fastagencyapi: # nosemgrep
python-3.11-fastagency: # nosemgrep
image: mcr.microsoft.com/devcontainers/python:3.11
container_name: $USER-python-3.11-fastagencyapi
container_name: $USER-python-3.11-fastagency
volumes:
- ../../:/workspaces/fastagencyapi:cached
- ../../:/workspaces/fastagency:cached
command: sleep infinity
environment:
- DATABASE_URL=postgresql://admin:password@${USER}-postgres-py311-fastagencyapi:5432/fastagency
- PY_DATABASE_URL=postgresql://admin:password@${USER}-postgres-py311-fastagencyapi:5432/pyfastagency
- NATS_URL=nats://${USER}-nats-py311-fastagencyapi:4222
- DATABASE_URL=postgresql://admin:password@${USER}-postgres-py311-fastagency:5432/fastagency
- PY_DATABASE_URL=postgresql://admin:password@${USER}-postgres-py311-fastagency:5432/pyfastagency
- NATS_URL=nats://${USER}-nats-py311-fastagency:4222
env_file:
- ../devcontainer.env
networks:
- fastagencyapi-network
nats-fastagencyapi: # nosemgrep
- fastagency-network
nats-fastagency: # nosemgrep
image: nats:latest
container_name: $USER-nats-py311-fastagencyapi
container_name: $USER-nats-py311-fastagency
# ports:
# - "${PORT_PREFIX}4222:4222"
# - "${PORT_PREFIX}9222:9222"
Expand All @@ -27,19 +27,19 @@ services:
env_file:
- ../devcontainer.env
networks:
- fastagencyapi-network
postgres-fastagencyapi: # nosemgrep
- fastagency-network
postgres-fastagency: # nosemgrep
image: postgres:latest
container_name: $USER-postgres-py311-fastagencyapi
container_name: $USER-postgres-py311-fastagency
environment:
POSTGRES_USER: admin
POSTGRES_PASSWORD: password # pragma: allowlist secret
POSTGRES_DB: fastagency
# ports:
# - "${PORT_PREFIX}5432:5432"
networks:
- fastagencyapi-network
- fastagency-network

networks:
fastagencyapi-network:
name: "${USER}-fastagencyapi-network"
fastagency-network:
name: "${USER}-fastagency-network"
6 changes: 3 additions & 3 deletions .devcontainer/python-3.12/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
"dockerComposeFile": [
"./docker-compose.yml"
],
"service": "python-3.12-fastagencyapi",
"service": "python-3.12-fastagency",
"forwardPorts": [
"${containerEnv:CONTAINER_PREFIX}-nats-py312-fastagencyapi:9222"
"${containerEnv:CONTAINER_PREFIX}-nats-py312-fastagency:9222"
],
"shutdownAction": "stopCompose",
"workspaceFolder": "/workspaces/fastagencyapi",
"workspaceFolder": "/workspaces/fastagency",
// "runArgs": [],
"remoteEnv": {},
"features": {
Expand Down
30 changes: 15 additions & 15 deletions .devcontainer/python-3.12/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
version: '3'

services:
python-3.12-fastagencyapi: # nosemgrep
python-3.12-fastagency: # nosemgrep
image: mcr.microsoft.com/devcontainers/python:3.12
container_name: $USER-python-3.12-fastagencyapi
container_name: $USER-python-3.12-fastagency
volumes:
- ../../:/workspaces/fastagencyapi:cached
- ../../:/workspaces/fastagency:cached
command: sleep infinity
environment:
- DATABASE_URL=postgresql://admin:password@${USER}-postgres-py312-fastagencyapi:5432/fastagency
- PY_DATABASE_URL=postgresql://admin:password@${USER}-postgres-py312-fastagencyapi:5432/pyfastagency
- NATS_URL=nats://${USER}-nats-py312-fastagencyapi:4222
- DATABASE_URL=postgresql://admin:password@${USER}-postgres-py312-fastagency:5432/fastagency
- PY_DATABASE_URL=postgresql://admin:password@${USER}-postgres-py312-fastagency:5432/pyfastagency
- NATS_URL=nats://${USER}-nats-py312-fastagency:4222
env_file:
- ../devcontainer.env
networks:
- fastagencyapi-network
nats-fastagencyapi: # nosemgrep
- fastagency-network
nats-fastagency: # nosemgrep
image: nats:latest
container_name: $USER-nats-py312-fastagencyapi
container_name: $USER-nats-py312-fastagency
# ports:
# - "${PORT_PREFIX}4222:4222"
# - "${PORT_PREFIX}9222:9222"
Expand All @@ -27,19 +27,19 @@ services:
env_file:
- ../devcontainer.env
networks:
- fastagencyapi-network
postgres-fastagencyapi: # nosemgrep
- fastagency-network
postgres-fastagency: # nosemgrep
image: postgres:latest
container_name: $USER-postgres-py312-fastagencyapi
container_name: $USER-postgres-py312-fastagency
environment:
POSTGRES_USER: admin
POSTGRES_PASSWORD: password # pragma: allowlist secret
POSTGRES_DB: fastagency
# ports:
# - "${PORT_PREFIX}5432:5432"
networks:
- fastagencyapi-network
- fastagency-network

networks:
fastagencyapi-network:
name: "${USER}-fastagencyapi-network"
fastagency-network:
name: "${USER}-fastagency-network"
6 changes: 3 additions & 3 deletions .devcontainer/python-3.9/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
"dockerComposeFile": [
"./docker-compose.yml"
],
"service": "python-3.9-fastagencyapi",
"service": "python-3.9-fastagency",
"forwardPorts": [
"${containerEnv:CONTAINER_PREFIX}-nats-py39-fastagencyapi:9222"
"${containerEnv:CONTAINER_PREFIX}-nats-py39-fastagency:9222"
],
"shutdownAction": "stopCompose",
"workspaceFolder": "/workspaces/fastagencyapi",
"workspaceFolder": "/workspaces/fastagency",
// "runArgs": [],
"remoteEnv": {},
"features": {
Expand Down
30 changes: 15 additions & 15 deletions .devcontainer/python-3.9/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
version: '3'

services:
python-3.9-fastagencyapi: # nosemgrep
python-3.9-fastagency: # nosemgrep
image: mcr.microsoft.com/devcontainers/python:3.9
container_name: $USER-python-3.9-fastagencyapi
container_name: $USER-python-3.9-fastagency
volumes:
- ../../:/workspaces/fastagencyapi:cached
- ../../:/workspaces/fastagency:cached
command: sleep infinity
environment:
- DATABASE_URL=postgresql://admin:password@${USER}-postgres-py39-fastagencyapi:5432/fastagency
- PY_DATABASE_URL=postgresql://admin:password@${USER}-postgres-py39-fastagencyapi:5432/pyfastagency
- NATS_URL=nats://${USER}-nats-py39-fastagencyapi:4222
- DATABASE_URL=postgresql://admin:password@${USER}-postgres-py39-fastagency:5432/fastagency
- PY_DATABASE_URL=postgresql://admin:password@${USER}-postgres-py39-fastagency:5432/pyfastagency
- NATS_URL=nats://${USER}-nats-py39-fastagency:4222
env_file:
- ../devcontainer.env
networks:
- fastagencyapi-network
nats-fastagencyapi: # nosemgrep
- fastagency-network
nats-fastagency: # nosemgrep
image: nats:latest
container_name: $USER-nats-py39-fastagencyapi
container_name: $USER-nats-py39-fastagency
# ports:
# - "${PORT_PREFIX}4222:4222"
# - "${PORT_PREFIX}9222:9222"
Expand All @@ -27,19 +27,19 @@ services:
env_file:
- ../devcontainer.env
networks:
- fastagencyapi-network
postgres-fastagencyapi: # nosemgrep
- fastagency-network
postgres-fastagency: # nosemgrep
image: postgres:latest
container_name: $USER-postgres-py39-fastagencyapi
container_name: $USER-postgres-py39-fastagency
environment:
POSTGRES_USER: admin
POSTGRES_PASSWORD: password # pragma: allowlist secret
POSTGRES_DB: fastagency
# ports:
# - "${PORT_PREFIX}5432:5432"
networks:
- fastagencyapi-network
- fastagency-network

networks:
fastagencyapi-network:
name: "${USER}-fastagencyapi-network"
fastagency-network:
name: "${USER}-fastagency-network"
4 changes: 0 additions & 4 deletions .devcontainer/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,3 @@ cd app && wasp db migrate-dev && cd ..

prisma migrate deploy --schema=schema.prisma
prisma generate --schema=schema.prisma --generator=pyclient

# Install packages for auth callout
cd auth_callout && pnpm install && cd ..
cd auth_callout && pnpx prisma generate --schema=packages/auth-service/schema.prisma && cd ..
5 changes: 0 additions & 5 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,3 @@ updates:
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
# Pnpm
- package-ecosystem: "npm"
directory: "/auth_callout"
schedule:
interval: "weekly"
Binary file modified app/src/client/static/avatar-placeholder.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/src/client/static/da-boi.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/src/client/static/open-saas-banner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/docs/assets/img/FA-Secondary-LOGO.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 81bb46b

Please sign in to comment.