diff --git a/.gitignore b/.gitignore index 8fabe60..5415a20 100644 --- a/.gitignore +++ b/.gitignore @@ -14,6 +14,7 @@ __pycache__/ *.log *.tmp *.bak +*.pid npm-debug.log* yarn-debug.log* yarn-error.log* diff --git a/api/api/config/__init__.py b/api/api/config/__init__.py index a5dd3fb..3cd97ac 100644 --- a/api/api/config/__init__.py +++ b/api/api/config/__init__.py @@ -1,7 +1,9 @@ from .default import DefaultSettings +from .prod import ProdSettings from .utils import get_settings __all__ = [ "DefaultSettings", + "ProdSettings", "get_settings", ] diff --git a/api/api/config/default.py b/api/api/config/default.py index 78ff916..65483b5 100644 --- a/api/api/config/default.py +++ b/api/api/config/default.py @@ -38,6 +38,11 @@ class DefaultSettings(BaseSettings): BROKER_PASSWORD: str = environ.get("BROKER_PASSWORD", "guest") BROKER_RABBITMQ_VHOST: str = environ.get("BROKER_RABBITMQ_VHOST", "") + REDIS_HOST: str = environ.get("REDIS_HOST", "localhost") + REDIS_PORT: int = int(environ.get("REDIS_PORT", "6379")) + REDIS_DB: int = int(environ.get("REDIS_DB", "0")) + REDIS_PASSWORD: str = environ.get("REDIS_PASSWORD", "hackme") + class Config: # env_file = "../.env" env_file_encoding = "utf-8" diff --git a/api/api/config/prod.py b/api/api/config/prod.py new file mode 100644 index 0000000..4a17da4 --- /dev/null +++ b/api/api/config/prod.py @@ -0,0 +1,4 @@ +from api.config.default import DefaultSettings + + +class ProdSettings(DefaultSettings): ... diff --git a/api/api/config/utils.py b/api/api/config/utils.py index c01ab46..cbf4812 100644 --- a/api/api/config/utils.py +++ b/api/api/config/utils.py @@ -1,13 +1,14 @@ from os import environ from api.config.default import DefaultSettings +from api.config.prod import ProdSettings def get_settings() -> DefaultSettings: env = environ.get("ENV", "local") env_settings = { "local": DefaultSettings, - "prod": None, + "prod": ProdSettings, } try: return env_settings[env]() diff --git a/api/pyproject.toml b/api/pyproject.toml index 2989f26..2f6b942 100644 --- a/api/pyproject.toml +++ b/api/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "api" -version = "0.1.0" +version = "0.0.1" description = "" authors = [ {name = "Vladislav",email = "vlad.dev@heado.ru"} diff --git a/client/.env.local b/client/.env.local new file mode 100644 index 0000000..ea08d60 --- /dev/null +++ b/client/.env.local @@ -0,0 +1,5 @@ +REACT_APP_WEBSOCKET_PROTOCOL=ws +REACT_APP_HTTP_PROTOCOL=http +REACT_APP_API_URL=localhost:8000 +REACT_APP_URL=localhost:3000 +BROWSER=none diff --git a/client/.gitignore b/client/.gitignore deleted file mode 100644 index 4d29575..0000000 --- a/client/.gitignore +++ /dev/null @@ -1,23 +0,0 @@ -# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. - -# dependencies -/node_modules -/.pnp -.pnp.js - -# testing -/coverage - -# production -/build - -# misc -.DS_Store -.env.local -.env.development.local -.env.test.local -.env.production.local - -npm-debug.log* -yarn-debug.log* -yarn-error.log* diff --git a/client/package.json b/client/package.json index 3ece4d5..12c4f19 100644 --- a/client/package.json +++ b/client/package.json @@ -1,6 +1,6 @@ { "name": "client", - "version": "0.1.0", + "version": "0.0.1", "private": true, "dependencies": { "@testing-library/dom": "^10.4.0", diff --git a/docker-compose.yaml b/docker-compose.yaml index 3c3d99e..9856d4f 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -16,8 +16,19 @@ services: MYSQL_USER: connect MYSQL_PASSWORD: hackme volumes: - - data:/var/lib/mysql + - mysql_data:/var/lib/mysql ports: - "3306:3306" + redis: + image: redis:7-alpine + container_name: redis + command: redis-server --requirepass password + environment: + REDIS_PASSWORD: hackme + ports: + - "6379:6379" + volumes: + - redis_data:/data volumes: - data: \ No newline at end of file + mysql_data: + redis_data: \ No newline at end of file diff --git a/supervisord.conf b/supervisord.conf index 611254c..e20af4d 100644 --- a/supervisord.conf +++ b/supervisord.conf @@ -10,13 +10,17 @@ environment= MYSQL_HOST=localhost, MYSQL_USER=connect, MYSQL_PORT=3306, - MYSQL_PASSWORD=%(ENV_MYSQL_PASSWORD)s, + MYSQL_PASSWORD=hackme, BROKER_PROTOCOL=amqp, BROKER_HOST=localhost, BROKER_USER=guest, BROKER_PORT=5672, BROKER_PASSWORD=guest, - BROKER_RABBITMQ_VHOST=/ + BROKER_RABBITMQ_VHOST=/, + REDIS_HOST=localhsot, + REDIS_PORT=6379, + REDIS_PASSWORD=hackme, + REDIS_DB=0 command=bash -c 'cd api; poetry run python3 -m api' numprocs=1 process_name=uvicorn-%(process_num)d @@ -25,3 +29,19 @@ stderr_logfile=api.err.log autostart=true autorestart=true startretries=5 + +[program:client] +environment= + REACT_APP_WEBSOCKET_PROTOCOL=ws, + REACT_APP_HTTP_PROTOCOL=http, + REACT_APP_API_URL=localhost:8000, + REACT_APP_URL=localhost:3000 +command=bash -c 'cd client; npm run build; serve -s build' +numprocs=1 +process_name=node-%(process_num)d +stdout_logfile=client.out.log +stderr_logfile=client.err.log +autostart=true +autorestart=true +startretries=5 +