Change default port

This commit is contained in:
jeffvli 2022-11-20 17:10:25 -08:00
parent 0a89e35a3e
commit ad39919f3f
3 changed files with 4 additions and 4 deletions

View File

@ -30,7 +30,7 @@ services:
- TOKEN_EXPIRATION=${TOKEN_EXPIRATION}
- TOKEN_REFRESH_EXPIRATION=${TOKEN_REFRESH_EXPIRATION}
ports:
- '8843:9321'
- '8643:9321'
restart: unless-stopped
prisma:
container_name: feishin_prisma_studio

View File

@ -20,7 +20,7 @@ export const LoginRoute = () => {
const [username, setUsername] = useState(searchParams.get('username') || '');
const [password, setPassword] = useState(searchParams.get('password') || '');
const [server, setServer] = useState(
searchParams.get('server') || 'http://localhost:8843'
searchParams.get('server') || 'http://localhost:8643'
);
const {
@ -88,7 +88,7 @@ export const LoginRoute = () => {
<TextInput
disabled={isLoading}
label="Server URL"
placeholder="http://localhost:8843"
placeholder="http://localhost:8643"
value={server}
onChange={(e: React.ChangeEvent<HTMLInputElement>) =>
setServer(e.currentTarget.value)

View File

@ -1,6 +1,6 @@
import { ReactNode } from 'react';
import styled from 'styled-components';
import { motion } from 'framer-motion';
import styled from 'styled-components';
interface AnimatedPageProps {
children: ReactNode;