Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 2 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Scaffolding
# Jumpstart

<a alt="Nx logo" href="https://nx.dev" target="_blank" rel="noreferrer"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-logo.png" width="45"></a>

Expand Down Expand Up @@ -32,10 +32,4 @@ To run both the frontend and backend with one command:

```
nx run-many -t serve -p frontend backend
```

## Other commands

Run `git submodule update --remote` to pull the latest changes from the component library

When cloning the repo, make sure to add the `--recurse-modules` flag to also clone the component library submodule (e.g. `git clone --recurse-submodules https://github.com/Code-4-Community/scaffolding.git` for the `scaffolding` repo)
```
11 changes: 9 additions & 2 deletions apps/backend/src/app.module.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,21 @@
/*
import { Module } from '@nestjs/common';
import { TypeOrmModule } from '@nestjs/typeorm';

import { AppController } from './app.controller';
import { AppService } from './app.service';
import { TaskModule } from './task/task.module';
import AppDataSource from './data-source';
// import { TaskModule } from './task/task.module';
///import { LabelModule } from './label/label.module';

@Module({
imports: [TypeOrmModule.forRoot(AppDataSource.options), TaskModule],
imports: [
TypeOrmModule.forRoot(AppDataSource.options),
//TaskModule,
//LabelModule,
],
controllers: [AppController],
providers: [AppService],
})
export class AppModule {}
*/
18 changes: 0 additions & 18 deletions apps/backend/src/auth/auth.controller.spec.ts

This file was deleted.

92 changes: 0 additions & 92 deletions apps/backend/src/auth/auth.controller.ts

This file was deleted.

19 changes: 0 additions & 19 deletions apps/backend/src/auth/auth.module.ts

This file was deleted.

18 changes: 0 additions & 18 deletions apps/backend/src/auth/auth.service.spec.ts

This file was deleted.

179 changes: 0 additions & 179 deletions apps/backend/src/auth/auth.service.ts

This file was deleted.

7 changes: 0 additions & 7 deletions apps/backend/src/auth/aws-exports.ts

This file was deleted.

12 changes: 0 additions & 12 deletions apps/backend/src/auth/dtos/confirm-password.dto.ts

This file was deleted.

Loading
Loading