mirror of
https://github.com/jeffvli/feishin.git
synced 2024-11-20 06:27:09 +01:00
Change default port
This commit is contained in:
parent
0a89e35a3e
commit
ad39919f3f
@ -30,7 +30,7 @@ services:
|
|||||||
- TOKEN_EXPIRATION=${TOKEN_EXPIRATION}
|
- TOKEN_EXPIRATION=${TOKEN_EXPIRATION}
|
||||||
- TOKEN_REFRESH_EXPIRATION=${TOKEN_REFRESH_EXPIRATION}
|
- TOKEN_REFRESH_EXPIRATION=${TOKEN_REFRESH_EXPIRATION}
|
||||||
ports:
|
ports:
|
||||||
- '8843:9321'
|
- '8643:9321'
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
prisma:
|
prisma:
|
||||||
container_name: feishin_prisma_studio
|
container_name: feishin_prisma_studio
|
||||||
|
@ -20,7 +20,7 @@ export const LoginRoute = () => {
|
|||||||
const [username, setUsername] = useState(searchParams.get('username') || '');
|
const [username, setUsername] = useState(searchParams.get('username') || '');
|
||||||
const [password, setPassword] = useState(searchParams.get('password') || '');
|
const [password, setPassword] = useState(searchParams.get('password') || '');
|
||||||
const [server, setServer] = useState(
|
const [server, setServer] = useState(
|
||||||
searchParams.get('server') || 'http://localhost:8843'
|
searchParams.get('server') || 'http://localhost:8643'
|
||||||
);
|
);
|
||||||
|
|
||||||
const {
|
const {
|
||||||
@ -88,7 +88,7 @@ export const LoginRoute = () => {
|
|||||||
<TextInput
|
<TextInput
|
||||||
disabled={isLoading}
|
disabled={isLoading}
|
||||||
label="Server URL"
|
label="Server URL"
|
||||||
placeholder="http://localhost:8843"
|
placeholder="http://localhost:8643"
|
||||||
value={server}
|
value={server}
|
||||||
onChange={(e: React.ChangeEvent<HTMLInputElement>) =>
|
onChange={(e: React.ChangeEvent<HTMLInputElement>) =>
|
||||||
setServer(e.currentTarget.value)
|
setServer(e.currentTarget.value)
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import { ReactNode } from 'react';
|
import { ReactNode } from 'react';
|
||||||
import styled from 'styled-components';
|
|
||||||
import { motion } from 'framer-motion';
|
import { motion } from 'framer-motion';
|
||||||
|
import styled from 'styled-components';
|
||||||
|
|
||||||
interface AnimatedPageProps {
|
interface AnimatedPageProps {
|
||||||
children: ReactNode;
|
children: ReactNode;
|
||||||
|
Loading…
Reference in New Issue
Block a user