Skip to content

Commit 385bc7a

Browse files
authored
Merge pull request #65 from 8iq/v_0.0.2_alpha
V 0.0.2 alpha
2 parents fa3add9 + 5d9bf1f commit 385bc7a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+15359
-105
lines changed

.editorconfig

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
root = true
2+
3+
[*]
4+
end_of_line = lf
5+
insert_final_newline = true
6+
7+
[*.{js,jsx,ts,tsx}]
8+
charset = utf-8
9+
indent_style = space
10+
indent_size = 2

.env.example

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
#DATABASE_URL=mongodb://mongo:mongo@127.0.0.1/main?authSource=admin
2-
#DATABASE_URL=postgresql://postgres:postgres@127.0.0.1/main
1+
#DATABASE_URL=postgresql://postgres:postgres@127.0.0.1:5432/main
2+
#REDIS_URL=redis://127.0.0.1:6379/1
33
NODE_ENV=development

.gitattributes

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/.yarn/** linguist-vendored
2+
/.yarn/releases/* binary
3+
/.yarn/plugins/**/* binary
4+
/.pnp.* binary linguist-generated

.prettierignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Add files here to ignore them from prettier formatting
2+
/dist
3+
/coverage
4+
/.nx/cache
5+
.pnp.*

.prettierrc.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"singleQuote": true,
3+
"trailingComma": "all",
4+
"semi": false
5+
}

.yarn/install-state.gz

1.22 MB
Binary file not shown.

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# syntax=docker/dockerfile:1.7-labs
12
FROM buildpack-deps:bookworm AS base
23
# https://hub.docker.com/_/node
34
# https://github.com/nodejs/docker-node/blob/18ed56ea9ba03c16f48372927f5eb2553033e8de/14/buster/Dockerfile
@@ -36,10 +37,9 @@ RUN echo "# Build time .env config!" >> /home/app/.env && \
3637
echo "DATABASE_URL=undefined" >> /home/app/.env && \
3738
echo "NODE_ENV=production" >> /home/app/.env
3839

39-
COPY package*.json ./
40-
COPY ./yarn.lock ./yarn.lock
41-
COPY ./.yarn ./.yarn
42-
COPY ./.yarnrc.yml ./.yarnrc.yml
40+
COPY package*.json yarn.lock .yarn .yarnrc.yml ./
41+
COPY --parents packages/*/package.json ./
42+
COPY --parents apps/*/package.json ./
4343

4444
# Cache packages!
4545
RUN set -ex \

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![Hackathon workflow](https://image.shutterstock.com/image-vector/banner-hackathon-design-sprintlike-event-260nw-1418226719.jpg)](https://drive.google.com/drive/folders/1Srw2T91_rRLTWgJc-Zh693hhbD2JS6Yh)
22

3-
What's inside? React + Next.js + Ant + Turbo + react-i18next + Refine
3+
What's inside? React + Next.js + Ant + Turbo + react-i18next + Refine
44

55
# Rapid Development Node.js Hackathon template
66

apps/web/.eslintrc.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
/** @type {import("eslint").Linter.Config} */
2+
module.exports = {
3+
root: true,
4+
extends: ["@repo/eslint-config/next.js"],
5+
parser: "@typescript-eslint/parser",
6+
parserOptions: {
7+
project: true,
8+
},
9+
};

apps/web/README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# `web`
2+
3+
Simple Front-End WEB app example
4+
5+
# What do you need to change?
6+
7+
1. You need to stats from `providers.tsx` logic and
8+
create your own `AuthProvider` and `DataProvider` and `resources`.
9+
10+
DOCS: https://refine.dev/docs/data/data-provider/
11+
12+
2.

0 commit comments

Comments
 (0)