-
-
Notifications
You must be signed in to change notification settings - Fork 0
Add working frontend #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Watermelon AI SummaryThe Pull Request is aimed at integrating a functional user interface into the main codebase, setting up the visual components that users will interact with. GitHub PRs
example-react-django-project is an open repo and Watermelon will serve it for free. |
}); | ||
await seedData(knex, tableName, data); | ||
} catch (ex) { | ||
console.log(`Seed failed: ${ex.message}`); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This PR contains console logs. Please review or remove them.
@@ -1,10 +1,18 @@ | |||
FROM node:16 | |||
|
|||
FROM node:20 as build-stage | |||
WORKDIR /app |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This PR contains leftover multi-line comments. Please review or remove them.
@@ -1,13 +1,71 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This PR contains leftover multi-line comments. Please review or remove them.
const fs = require("fs"); | ||
|
||
const clean = () => { | ||
fs.rmSync("./node_modules", { recursive: true, force: true }); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This PR contains leftover multi-line comments. Please review or remove them.
No description provided.