-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
amplication-build-ckpnliqfu3740531bs6lm0cy80h
- Loading branch information
1 parent
e3ad78f
commit 60ff66a
Showing
174 changed files
with
69,241 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
.dockerignore | ||
docker-compose.yml | ||
Dockerfile | ||
admin/build/ | ||
admin/node_modules/ | ||
admin/.env | ||
admin/.gitignore | ||
server/dist/ | ||
server/node_modules/ | ||
server/.env | ||
server/.gitignore | ||
server/.prettierignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
POSTGRESQL_USER=admin | ||
POSTGRESQL_PASSWORD=admin | ||
POSTGRESQL_PORT=5432 | ||
SERVER_PORT=3000 | ||
BCRYPT_SALT=10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# By default, use node 14.15.3 as the base image | ||
ARG IMAGE=node@sha256:bef791f512bb4c3051a1210d7fbd58206538f41eea9b966031abc8a7453308fe | ||
|
||
FROM $IMAGE | ||
|
||
# Define how verbose should npm install be | ||
ARG NPM_LOG_LEVEL=silent | ||
# Hide Open Collective message from install logs | ||
ENV OPENCOLLECTIVE_HIDE=1 | ||
# Hiden NPM security message from install logs | ||
ENV NPM_CONFIG_AUDIT=false | ||
# Hide NPM funding message from install logs | ||
ENV NPM_CONFIG_FUND=false | ||
|
||
# Update npm to version 7 | ||
RUN npm i -g [email protected] | ||
|
||
# Set the working direcotry | ||
WORKDIR /app | ||
|
||
# Copy files specifiying dependencies | ||
COPY server/package.json server/package-lock.json ./server/ | ||
COPY admin-ui/package.json admin-ui/package-lock.json ./admin-ui/ | ||
|
||
# Install dependencies | ||
RUN cd server; npm ci --loglevel=$NPM_LOG_LEVEL; | ||
RUN cd admin-ui; npm ci --loglevel=$NPM_LOG_LEVEL; | ||
|
||
# Copy Prisma schema | ||
COPY server/prisma/schema.prisma ./server/prisma/ | ||
|
||
# Generate Prisma client | ||
RUN cd server; npm run prisma:generate; | ||
|
||
# Copy all the files | ||
COPY . . | ||
|
||
# Build code | ||
RUN set -e; (cd server; npm run build) & (cd admin-ui; npm run build) | ||
|
||
# Expose the port the server listens to | ||
EXPOSE 3000 | ||
|
||
# Make server to serve admin built files | ||
ENV SERVE_STATIC_ROOT_PATH=admin-ui/build | ||
|
||
# Run server | ||
CMD [ "node", "server/dist/main"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
This project was generated with [Amplication](https://amplication.com) | ||
|
||
It consists of two packages: | ||
|
||
### [Server](./server/README.md) | ||
|
||
### [Admin UI](./admin-ui/README.md) | ||
|
||
### Learn more | ||
|
||
You can learn more in the [Amplication documentation](https://docs.amplication.com/guides/getting-started). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
PORT=3001 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
/node_modules | ||
/.pnp | ||
.pnp.js | ||
|
||
# testing | ||
/coverage | ||
|
||
# production | ||
/build | ||
|
||
# misc | ||
.DS_Store | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# Amplication | ||
|
||
This app was generated with Amplication. | ||
You can learn more in the [Amplication documentation](https://docs.amplication.com/guides/getting-started). | ||
|
||
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app), and built with [react-admin](https://marmelab.com/react-admin/) | ||
|
||
## Available Scripts | ||
|
||
In the project directory, you can run: | ||
|
||
### `yarn start` | ||
|
||
Runs the app in the development mode.\ | ||
Open [http://localhost:3000](http://localhost:3000) to view it in the browser. | ||
|
||
The page will reload if you make edits.\ | ||
You will also see any lint errors in the console. | ||
|
||
### `yarn test` | ||
|
||
Launches the test runner in the interactive watch mode.\ | ||
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. | ||
|
||
### `yarn build` | ||
|
||
Builds the app for production to the `build` folder.\ | ||
It correctly bundles React in production mode and optimizes the build for the best performance. | ||
|
||
The build is minified and the filenames include the hashes.\ | ||
Your app is ready to be deployed! | ||
|
||
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. | ||
|
||
### `yarn eject` | ||
|
||
**Note: this is a one-way operation. Once you `eject`, you can’t go back!** | ||
|
||
If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. | ||
|
||
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own. | ||
|
||
You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it. | ||
|
||
## Learn More | ||
|
||
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). | ||
|
||
To learn React, check out the [React documentation](https://reactjs.org/). |
Oops, something went wrong.