-
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.
Showing
62 changed files
with
9,370 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Build and Release | ||
|
||
on: | ||
push: | ||
branches: | ||
- main # Modify to your branch name | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '14' # Modify to your Node.js version | ||
|
||
- name: Install dependencies | ||
run: npm install | ||
|
||
- name: Build TypeScript | ||
run: npm run build # Modify to your build script if necessary | ||
|
||
# Add more steps for testing, linting, etc. | ||
|
||
- name: Release to GitHub | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
files: | | ||
# List files to include in the release | ||
dist/*.js # Modify based on your build output | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
body: Release ${{ github.sha }} |
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 |
---|---|---|
@@ -1,2 +1,37 @@ | ||
# NodeJS-Backend-Structure | ||
NodeJS Backend Structure. | ||
Project Name | ||
============ | ||
|
||
Description | ||
----------- | ||
|
||
This project is a Node.js application structured to assist developers in \[add a brief description of the project's purpose or functionality\]. | ||
|
||
Usage | ||
----- | ||
|
||
\[Add instructions or information on how to use or run the Node.js application.\] | ||
|
||
License | ||
------- | ||
|
||
This project is licensed under the MIT License - see the LICENSE file for details. | ||
|
||
Authors | ||
------- | ||
|
||
* [Vimukthi Indunil](https://github.com/darkwaves-ofc) | ||
* [Achira Nimnaka](https://github.com/achiragaming) | ||
|
||
Contribution | ||
------------ | ||
|
||
\[Explain how others can contribute to the project if contributions are welcome.\] | ||
|
||
Acknowledgments | ||
--------------- | ||
|
||
\[Add any acknowledgments or credits to resources or individuals that have been helpful in the project.\] | ||
|
||
* * * | ||
|
||
Feel free to enrich the sections by adding detailed usage instructions, guidelines for contributions, acknowledgments, or any other relevant information about your project. Adjust the placeholders like `[add a brief description of the project's purpose or functionality]` with the actual project's details. This README provides a basic structure that you can build upon. |
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,6 @@ | ||
{ | ||
"watch": ["src"], | ||
"ext": "ts", | ||
"ignore": ["src/**/*.spec.ts"], | ||
"exec": "npm run devStart" | ||
} |
Oops, something went wrong.