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

Test | Project Profile Update | SIS-97 #32

Merged
merged 20 commits into from
Feb 16, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
7204a7e
yarn.lock and package.json Files Have Been Updated
agitrubard Feb 14, 2022
60df403
Project Name and Version Has Been Added to package.json File
agitrubard Feb 14, 2022
b481cb0
README.md File Has Been Updated for Live and Local
agitrubard Feb 14, 2022
6ff0d30
@types/node Has Been Added to package.json File & yarn.lock Has Been …
agitrubard Feb 14, 2022
1eb7456
.env Files Has Been Created for Local API and Live API
agitrubard Feb 14, 2022
8edaf41
Empty Pages Have Been Deleted & teacher/lesson Page Has Been Fixed
agitrubard Feb 14, 2022
91a7bb8
Officer/Login Pages API URLs Have Been Updated to env SIS_API_URL
agitrubard Feb 14, 2022
9eddcb4
Student/Login Pages API URLs Have Been Updated to env SIS_API_URL
agitrubard Feb 14, 2022
947203d
Teacher/Login Pages API URLs Have Been Updated to env SIS_API_URL
agitrubard Feb 14, 2022
cb21bbd
Student/MyInfo Page API URLs Have Been Updated to env SIS_API_URL
agitrubard Feb 14, 2022
f51d40e
Teacher/MyInfo Page API URLs Have Been Updated to env SIS_API_URL
agitrubard Feb 14, 2022
16e7098
Teacher/LessonList Page API URL Has Been Updated to env SIS_API_URL
agitrubard Feb 14, 2022
e329810
Officer/StudentList Page API URL Has Been Updated to env SIS_API_URL
agitrubard Feb 14, 2022
cf64b4d
Officer/StudentSave Page API URLs Have Been Updated to env SIS_API_URL
agitrubard Feb 14, 2022
389bbfd
Officer/StudentDetail Page API URLs Have Been Updated to env SIS_API_URL
agitrubard Feb 14, 2022
68d454d
Officer/TeacherList Page API URL Has Been Updated to env SIS_API_URL
agitrubard Feb 14, 2022
93f4b71
Officer/TeacherDetail Page API URLs Have Been Updated to env SIS_API_URL
agitrubard Feb 16, 2022
37651bc
Officer/TeacherSave Page API URLs Have Been Updated to env SIS_API_URL
agitrubard Feb 16, 2022
1c75d00
Officer/TeacherLessonSave Page API URLs Have Been Updated to env SIS_…
agitrubard Feb 16, 2022
4bbbb34
Officer/TeacherLessonList Page API URL Has Been Updated to env SIS_AP…
agitrubard Feb 16, 2022
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
3 changes: 3 additions & 0 deletions .env.sis.live
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

SIS_PROFILE=live
SIS_API_URL=https://sis-be.herokuapp.com
4 changes: 4 additions & 0 deletions .env.sis.local
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

PORT=8586
SIS_PROFILE=local
SIS_API_URL=http://localhost:8585
2 changes: 2 additions & 0 deletions .idea/student-information-system-fe.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 15 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,28 @@
```
yarn install
```
or

For Execution
------------------

### LOCAL API
```
yarn build:local
```
npm install
```
yarn dev:local
```

### For Execution
### LIVE API
```
yarn dev
yarn build
```
or
```
npm run dev
yarn dev
```

Local URL : http://localhost:3000/
------------------

Live URL : https://sis-fe.herokuapp.com/
------------------
1 change: 0 additions & 1 deletion next-env.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/// <reference types="next" />
/// <reference types="next/types/global" />
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
Expand Down
Loading