Skip to content

Latest commit

 

History

History
65 lines (41 loc) · 777 Bytes

README.md

File metadata and controls

65 lines (41 loc) · 777 Bytes

Tech stacks used

Frontend

  • Embedded Javascript(EJS)

Backend

  • Nestjs
  • Express
  • passportjs
  • octokit
  • TypeORM

Authentication

  • GithubOath2

Database

  • SQLite

Hosting

  • Railway

Guide for local deployment -

  1. Clone the repository.
git clone https://github.com/divya-ilona/git-app.git

2.Change the working directory

cd git-app

3.Install dependencies

npm install
  1. Create your OAuth App through Developer Setting of your github accout.
  2. Create your own Client Id and secret and paste in github strategy.
  3. Change callback url to localhost in repo service.


## Running the app

```bash
# development
$ npm run start

# watch mode
$ npm run start:dev

# production mode
$ npm run start:prod