Skip to content

Commit

Permalink
strucuture created.
Browse files Browse the repository at this point in the history
this may notworking!
  • Loading branch information
darkwaves-ofc committed Jan 2, 2024
1 parent 93737eb commit 3394478
Show file tree
Hide file tree
Showing 62 changed files with 9,370 additions and 2 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/build.yml
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 }}
39 changes: 37 additions & 2 deletions README.md
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.
6 changes: 6 additions & 0 deletions nodemon.json
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"
}
Loading

0 comments on commit 3394478

Please sign in to comment.