Basic layout
This commit is contained in:
parent
d64855c950
commit
a7a64f0b85
55
compose.yaml
55
compose.yaml
|
@ -1,34 +1,35 @@
|
||||||
version: "3"
|
version: "3"
|
||||||
|
|
||||||
services:
|
services:
|
||||||
# mongodb:
|
mongodb:
|
||||||
# image: mongo:bionic
|
image: mongo:bionic
|
||||||
# container_name: mongodb
|
container_name: mongodb
|
||||||
# ports:
|
ports:
|
||||||
# - "27017:27017"
|
- "27017:27017"
|
||||||
# environment:
|
environment:
|
||||||
# MONGO_INITDB_ROOT_USERNAME: root
|
MONGO_INITDB_ROOT_USERNAME: root
|
||||||
# MONGO_INITDB_ROOT_PASSWORD: password
|
MONGO_INITDB_ROOT_PASSWORD: password
|
||||||
# MONGO_INITDB_DATABASE: bot
|
MONGO_INITDB_DATABASE: bot
|
||||||
# volumes:
|
volumes:
|
||||||
# - mongodb_data:/data/db
|
- ./init-mongo.js:/docker-entrypoint-initdb.d/init-mongo.js:ro
|
||||||
|
- mongodb_data:/data/db
|
||||||
|
|
||||||
# bot-api:
|
bot-api:
|
||||||
# image: oven/bun:1
|
image: oven/bun:1
|
||||||
# container_name: bot-api
|
container_name: bot-api
|
||||||
# command: bun run docker-dev
|
command: bun run docker-dev
|
||||||
# working_dir: /usr/src/app
|
working_dir: /usr/src/app
|
||||||
# ports:
|
ports:
|
||||||
# - "8080:8080"
|
- "8080:8080"
|
||||||
# depends_on:
|
depends_on:
|
||||||
# - mongodb
|
- mongodb
|
||||||
# environment:
|
environment:
|
||||||
# MONGODB_URI: "mongodb://mongodb:27017/bot"
|
MONGODB_URI: "mongodb://mongodb:27017/bot"
|
||||||
# MONGODB_USER: "root"
|
MONGODB_USER: "root"
|
||||||
# MONGODB_PASS: "password"
|
MONGODB_PASS: "password"
|
||||||
# JWTSECRET: "cooljwtsecret"
|
JWTSECRET: "cooljwtsecret"
|
||||||
# volumes:
|
volumes:
|
||||||
# - ./:/usr/src/app:ro
|
- ./:/usr/src/app:ro
|
||||||
|
|
||||||
bot-image-moderation-fe:
|
bot-image-moderation-fe:
|
||||||
image: oven/bun:1
|
image: oven/bun:1
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
db = new Mongo().getDB("bot");
|
||||||
|
|
||||||
|
db.createCollection('authorizations');
|
||||||
|
|
||||||
|
db.authorization.insert([
|
||||||
|
{
|
||||||
|
app: "tester",
|
||||||
|
secret: "test"
|
||||||
|
}
|
||||||
|
])
|
42
src/App.css
42
src/App.css
|
@ -1,42 +0,0 @@
|
||||||
#root {
|
|
||||||
max-width: 1280px;
|
|
||||||
margin: 0 auto;
|
|
||||||
padding: 2rem;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.logo {
|
|
||||||
height: 6em;
|
|
||||||
padding: 1.5em;
|
|
||||||
will-change: filter;
|
|
||||||
transition: filter 300ms;
|
|
||||||
}
|
|
||||||
.logo:hover {
|
|
||||||
filter: drop-shadow(0 0 2em #646cffaa);
|
|
||||||
}
|
|
||||||
.logo.react:hover {
|
|
||||||
filter: drop-shadow(0 0 2em #61dafbaa);
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes logo-spin {
|
|
||||||
from {
|
|
||||||
transform: rotate(0deg);
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
transform: rotate(360deg);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (prefers-reduced-motion: no-preference) {
|
|
||||||
a:nth-of-type(2) .logo {
|
|
||||||
animation: logo-spin infinite 20s linear;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.card {
|
|
||||||
padding: 2em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.read-the-docs {
|
|
||||||
color: #888;
|
|
||||||
}
|
|
27
src/App.tsx
27
src/App.tsx
|
@ -1,33 +1,10 @@
|
||||||
import { useState } from 'react'
|
|
||||||
import reactLogo from './assets/react.svg'
|
|
||||||
import viteLogo from '/vite.svg'
|
|
||||||
import './App.css'
|
import './App.css'
|
||||||
|
import ImageModerator from './components/ImageModerator/ImageModerator'
|
||||||
|
|
||||||
function App() {
|
function App() {
|
||||||
const [count, setCount] = useState(0)
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<div>
|
<ImageModerator url='https://picsum.photos/1000'/>
|
||||||
<a href="https://vitejs.dev" target="_blank">
|
|
||||||
<img src={viteLogo} className="logo" alt="Vite logo" />
|
|
||||||
</a>
|
|
||||||
<a href="https://react.dev" target="_blank">
|
|
||||||
<img src={reactLogo} className="logo react" alt="React logo" />
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
<h1>Vite + React</h1>
|
|
||||||
<div className="card">
|
|
||||||
<button onClick={() => setCount((count) => count + 1)}>
|
|
||||||
count is {count}
|
|
||||||
</button>
|
|
||||||
<p>
|
|
||||||
Edit <code>src/App.tsx</code> and save to test HMR
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
<p className="read-the-docs">
|
|
||||||
Click on the Vite and React logos to learn more
|
|
||||||
</p>
|
|
||||||
</>
|
</>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
export interface ButtonProps {
|
||||||
|
label: string;
|
||||||
|
action?: () => void;
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function ImageViewer(props: ButtonProps) {
|
||||||
|
return <button onClick={props.action}>{props.label}</button>
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
import Button from "../Button/Button";
|
||||||
|
|
||||||
|
export interface ImageModeratorProps {
|
||||||
|
url: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function ImageModerator(props: ImageModeratorProps) {
|
||||||
|
return <div style={{ display: "grid", gridTemplateColumns: "1fr 1fr",
|
||||||
|
gridTemplateRows: "1fr 50px", gridTemplateAreas: "'. .' '. .'", width: "100vw", height: "100vh" }}>
|
||||||
|
<img src={props.url} style={{ width: "100%", height: "100%", gridColumnStart: 1, gridColumnEnd: 3, display: "block", objectFit: "contain" }} />
|
||||||
|
<Button label="Discard" />
|
||||||
|
<Button label="Accept" />
|
||||||
|
</div>
|
||||||
|
}
|
|
@ -24,10 +24,7 @@ a:hover {
|
||||||
|
|
||||||
body {
|
body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
display: flex;
|
|
||||||
place-items: center;
|
place-items: center;
|
||||||
min-width: 320px;
|
|
||||||
min-height: 100vh;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
|
|
Loading…
Reference in New Issue