Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(project name): TEMS-30 change NextJS/NestJS to Teknoy EMS #24

Merged
merged 1 commit into from
Sep 7, 2022
Merged
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
2 changes: 1 addition & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ _First, create a draft pull request. Then mark the PR as ready for review when a
- [ ] Reviewed own code
- [ ] Commented on code that is hard to understand
- [ ] Implemented tests for the feature/bugfix
- [ ] All GitHub status checks pass
- [ ] All **_Required_** GitHub status checks pass
- [ ] The frontend and backend PR previews have been deployed

**Backend only**
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ build/
.env
.vim
.vercel
.DS_Store
10 changes: 2 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
# NestJS/NextJS Template
# Teknoy EMS

![NestJS/NextJS](https://miro.medium.com/max/984/1*ymfz_KKMuGJpIPyvdlGnHA.png)

The goal of this project is to create a template for full stack web development
using [NestJS](https://nestjs.com/) as the backend framework and
[NextJS](https://nextjs.org/) as the frontend framework

See [Confluence Page](https://princhcanal.atlassian.net/wiki/spaces/NNT/overview) for instructions on how to run the app as well as other documentation
![Teknoy EMS](teknoy-ems.png)
8 changes: 4 additions & 4 deletions app.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "NestJS/NextJS Template",
"description": "A fullstack template using NestJS and NextJS",
"repository": "https://github.com/princhcanal/nestjs-nextjs-template",
"website": "https://nestjs-nextjs-template.herokuapp.com",
"name": "Teknoy EMS",
"description": "An event management system used by the staff of Cebu Institute of Technology - University",
"repository": "https://github.com/citu-cpe/teknoy-ems",
"website": "https://teknoy-ems.vercel.app",
"addons": ["heroku-postgresql:hobby-dev"],
"environments": {
"review": {
Expand Down
8 changes: 4 additions & 4 deletions backend/app.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "NestJS/NextJS Template",
"description": "A fullstack template using NestJS and NextJS",
"repository": "https://github.com/princhcanal/nestjs-nextjs-template",
"website": "https://nestjs-nextjs-template.herokuapp.com",
"name": "Teknoy EMS",
"description": "An event management system used by the staff of Cebu Institute of Technology - University",
"repository": "https://github.com/citu-cpe/teknoy-ems",
"website": "https://teknoy-ems.vercel.app",
"addons": ["heroku-postgresql:hobby-dev"],
"environments": {
"review": {
Expand Down
4 changes: 2 additions & 2 deletions backend/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ async function bootstrap() {
};

const config = new DocumentBuilder()
.setTitle('NestJS/NextJS Template')
.setDescription('API for NestJS/NextJS Template')
.setTitle('Teknoy EMS API')
.setDescription('API for Teknoy EMS')
.setVersion('1.0')
.build();
const document = SwaggerModule.createDocument(app, config, options);
Expand Down
2 changes: 1 addition & 1 deletion frontend/__tests__/index/index.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ describe('Home Page', () => {

it('shows landing page', () => {
const heading = screen.getByRole<HTMLHeadingElement>('heading', {
name: 'NextJS/NestJS Template',
name: 'Teknoy EMS',
});

const loginLink = screen.getByRole<HTMLAnchorElement>('link', {
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/modules/index/components/Landing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Center, Heading, Box, Link } from '@chakra-ui/react';
export const Landing = () => {
return (
<Center w='100%' h='100vh' flexDir='column'>
<Heading>NextJS/NestJS Template</Heading>
<Heading>Teknoy EMS</Heading>
<Box as='nav'>
<NextLink href='/login' passHref>
<Link mr='4'>Log In</Link>
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/open-api/api.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* tslint:disable */
/* eslint-disable */
/**
* NestJS/NextJS Template
* API for NestJS/NextJS Template
* TeknoyEMS API
* API TeknoyEMS
*
* The version of the OpenAPI document: 1.0
*
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/open-api/api/default-api.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* tslint:disable */
/* eslint-disable */
/**
* NestJS/NextJS Template
* API for NestJS/NextJS Template
* TeknoyEMS API
* API TeknoyEMS
*
* The version of the OpenAPI document: 1.0
*
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/open-api/base.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* tslint:disable */
/* eslint-disable */
/**
* NestJS/NextJS Template
* API for NestJS/NextJS Template
* TeknoyEMS API
* API TeknoyEMS
*
* The version of the OpenAPI document: 1.0
*
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/open-api/common.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* tslint:disable */
/* eslint-disable */
/**
* NestJS/NextJS Template
* API for NestJS/NextJS Template
* TeknoyEMS API
* API TeknoyEMS
*
* The version of the OpenAPI document: 1.0
*
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/open-api/configuration.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* tslint:disable */
/* eslint-disable */
/**
* NestJS/NextJS Template
* API for NestJS/NextJS Template
* TeknoyEMS API
* API TeknoyEMS
*
* The version of the OpenAPI document: 1.0
*
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/open-api/index.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* tslint:disable */
/* eslint-disable */
/**
* NestJS/NextJS Template
* API for NestJS/NextJS Template
* TeknoyEMS API
* API TeknoyEMS
*
* The version of the OpenAPI document: 1.0
*
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/open-api/models/change-password-dto.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* tslint:disable */
/* eslint-disable */
/**
* NestJS/NextJS Template
* API for NestJS/NextJS Template
* TeknoyEMS API
* API TeknoyEMS
*
* The version of the OpenAPI document: 1.0
*
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/open-api/models/equipment-dto.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* tslint:disable */
/* eslint-disable */
/**
* NestJS/NextJS Template
* API for NestJS/NextJS Template
* TeknoyEMS API
* API TeknoyEMS
*
* The version of the OpenAPI document: 1.0
*
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/open-api/models/login-response-dto.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* tslint:disable */
/* eslint-disable */
/**
* NestJS/NextJS Template
* API for NestJS/NextJS Template
* TeknoyEMS API
* API TeknoyEMS
*
* The version of the OpenAPI document: 1.0
*
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/open-api/models/login-user-dto.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* tslint:disable */
/* eslint-disable */
/**
* NestJS/NextJS Template
* API for NestJS/NextJS Template
* TeknoyEMS API
* API TeknoyEMS
*
* The version of the OpenAPI document: 1.0
*
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/open-api/models/organizer-dto.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* tslint:disable */
/* eslint-disable */
/**
* NestJS/NextJS Template
* API for NestJS/NextJS Template
* TeknoyEMS API
* API TeknoyEMS
*
* The version of the OpenAPI document: 1.0
*
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/open-api/models/register-user-dto.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* tslint:disable */
/* eslint-disable */
/**
* NestJS/NextJS Template
* API for NestJS/NextJS Template
* TeknoyEMS API
* API TeknoyEMS
*
* The version of the OpenAPI document: 1.0
*
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/open-api/models/schedule-dto.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* tslint:disable */
/* eslint-disable */
/**
* NestJS/NextJS Template
* API for NestJS/NextJS Template
* TeknoyEMS API
* API TeknoyEMS
*
* The version of the OpenAPI document: 1.0
*
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/open-api/models/tokens-dto.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* tslint:disable */
/* eslint-disable */
/**
* NestJS/NextJS Template
* API for NestJS/NextJS Template
* TeknoyEMS API
* API TeknoyEMS
*
* The version of the OpenAPI document: 1.0
*
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/open-api/models/user-dto.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* tslint:disable */
/* eslint-disable */
/**
* NestJS/NextJS Template
* API for NestJS/NextJS Template
* TeknoyEMS API
* API TeknoyEMS
*
* The version of the OpenAPI document: 1.0
*
Expand Down
Binary file added teknoy-ems.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.