-
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.
Merge pull request #49 from richard483/feature/payment
update README.md & index.html
- Loading branch information
Showing
2 changed files
with
45 additions
and
2 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
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,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> |