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

Feat frontend deploy #56

Merged
merged 28 commits into from
Oct 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
1bac481
feat: deployment test
varun2948 Sep 5, 2023
126165a
feat: test
varun2948 Sep 5, 2023
9b99bb7
Update nextjs.yml
varun2948 Sep 5, 2023
12121da
fix: lint
varun2948 Sep 5, 2023
1e248cd
Merge branch 'feat-frontend-deploy' of github.com:kshitijrajsharma/OS…
varun2948 Sep 5, 2023
98ff57d
Update nextjs.yml
varun2948 Sep 5, 2023
db48f3d
Update nextjs.yml
varun2948 Sep 5, 2023
59e3859
Update nextjs.yml
varun2948 Sep 6, 2023
f61ed7a
fix: remove package-lock for githubactions
varun2948 Sep 26, 2023
fc02116
Merge branch 'feat-frontend-deploy' of github.com:kshitijrajsharma/OS…
varun2948 Sep 26, 2023
241926f
fix: test deploy
varun2948 Sep 26, 2023
003140b
fix: next js new yaml file
varun2948 Sep 26, 2023
870d229
fix: test 2
varun2948 Sep 26, 2023
56af185
fix: test fix
varun2948 Sep 26, 2023
a7e62f5
fix: test
varun2948 Sep 26, 2023
a3b999d
fix : test 3
varun2948 Sep 26, 2023
7b099be
fix: test 11
varun2948 Sep 26, 2023
52a08d2
test
varun2948 Sep 26, 2023
635fa9f
test sds
varun2948 Sep 26, 2023
c42fb59
fix: test3
varun2948 Sep 26, 2023
5d312d7
Merge branch 'master' of github.com:kshitijrajsharma/OSMSG into feat-…
varun2948 Sep 27, 2023
c766738
Merge branch 'master' of github.com:kshitijrajsharma/OSMSG into feat-…
varun2948 Sep 28, 2023
f5079be
Feat: added multiple chart from github
varun2948 Sep 28, 2023
2a5d771
feat: added config for output:export
varun2948 Sep 28, 2023
59064f7
fix: config file
varun2948 Sep 28, 2023
36ba44e
fix: test
varun2948 Sep 28, 2023
ab09d4a
Update nextjs.yml
mahesh-naxa Oct 3, 2023
2568685
updated nextjs github actions
mahesh-naxa Oct 3, 2023
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
5 changes: 3 additions & 2 deletions .github/workflows/nextjs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ name: Deploy Next.js site to Pages
on:
# Runs on pushes targeting the default branch
push:
branches: ["master"]
branches:
- master

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand Down Expand Up @@ -86,7 +87,7 @@ jobs:
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: ./out
path: ./frontend/out

# Deployment job
deploy:
Expand Down
1 change: 0 additions & 1 deletion frontend/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ yarn dev
# or
pnpm dev
```

Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.

You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
Expand Down
6 changes: 4 additions & 2 deletions frontend/next.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
/** @type {import('next').NextConfig} */
const nextConfig = {}
const nextConfig = {
output: "export",
};

module.exports = nextConfig
module.exports = nextConfig;
Loading