Skip to content

Commit

Permalink
Merge pull request #49 from richard483/feature/payment
Browse files Browse the repository at this point in the history
update README.md & index.html
  • Loading branch information
richard483 authored Jan 7, 2024
2 parents f496f78 + fa79e91 commit 64b1f08
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 2 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,20 @@ Installing project
```bash
$ npm install
```
Pushing prisma schema to database
Run prisma migration & seeding

```bash
$ npx prisma db push
$ npm run migrate
```
## Running the app

```bash
# development
$ npm run start

# development with hot reload
$ npm run dev

# watch mode
$ npm run start:dev

Expand Down
40 changes: 40 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<!DOCTYPE html>
<html>

<head>
<title>8Tech Back End</title>
</head>
<script type="module" src="https://cdn.jsdelivr.net/gh/zerodevx/zero-md@2/dist/zero-md.min.js"></script>

<body>
<h1>Welcome to 8Tech Back End Apps</h1>

<h2>Installation & Build</h2>
<p>To install, run, and build the application, follow these steps:</p>
<zero-md src="./README.md">
<template>
<style>
* {
background-color: antiquewhite;
}
</style>
</template>
</zero-md>

<h2>Documentation</h2>
<p>For detailed documentation on how to use and develop with this application, please refer to the official Nest.js
documentation:</p>
<a href="https://docs.nestjs.com/">Nest.js Documentation</a>

<h2>Docker Deployment</h2>
<p>If you prefer to deploy the application using Docker, you can use the following steps:</p>
<pre>
<code>
$ docker build -t 8tech:tagname .
$ docker run -p 3000:3000 8tech:tagname
$ docker push username/8tech:tagname
</code>
</pre>
</body>

</html>

0 comments on commit 64b1f08

Please sign in to comment.