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

[MM-58805]: Remove Standalone code part - 1 #2

Merged
merged 27 commits into from
Jul 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
6191901
refactor: isPlugin for API level
Rajat-Dabade Jun 27, 2024
fae82fe
chore: removed GetContextConn as it is not required
Rajat-Dabade Jun 27, 2024
a20079b
chore: clean up api.go removed none required function
Rajat-Dabade Jun 27, 2024
60c76e9
chore: removed commented code
Rajat-Dabade Jun 27, 2024
4c9a8a9
refactor: removed the admin as its no log required
Rajat-Dabade Jun 27, 2024
f942a47
refactor: removed handlePostTeamRegenerateSignupToken as not used any…
Rajat-Dabade Jun 27, 2024
688f53a
refactor: updated make file rules
Rajat-Dabade Jun 28, 2024
80d402e
refactor: removed isGuest code
Rajat-Dabade Jun 28, 2024
403ba9c
refactor: removed auth login password changepassword code
Rajat-Dabade Jun 28, 2024
f2b54b8
chore: linter fixes
Rajat-Dabade Jun 28, 2024
70467de
refactor: removed user login register code
Rajat-Dabade Jun 30, 2024
ef9438a
chore: linter fixes
Rajat-Dabade Jul 1, 2024
2a1a362
refactor: removed auth layer
Rajat-Dabade Jul 1, 2024
e718d7e
refactor: removed isSingle user checks
Rajat-Dabade Jul 1, 2024
084839a
chore: removed debugging logs
Rajat-Dabade Jul 1, 2024
3b46c4b
chore: removed debugging logs
Rajat-Dabade Jul 1, 2024
64af4d5
revert: isGuestUser check
Rajat-Dabade Jul 5, 2024
4735490
Deprecate standalone SQL store level (#4)
Rajat-Dabade Jul 13, 2024
fdeee37
MM-59356: Fixing testcase for webapp and server (#6)
Rajat-Dabade Jul 16, 2024
8de7da4
[MM-59349]: Getting Rid of Mattermost Auth layer (#10)
Rajat-Dabade Jul 23, 2024
a407440
[MM-59824]: Removed website code. (#12)
Rajat-Dabade Jul 23, 2024
4b4b0b2
MM-59294: Workflow updated and release process (#7)
Rajat-Dabade Jul 25, 2024
611c2a2
From `focalboard` to `board` to generate tar bundle (#14)
Rajat-Dabade Jul 27, 2024
3224d6a
fix: ci issue
Rajat-Dabade Jul 30, 2024
6023e19
chore: ci fix
Rajat-Dabade Jul 30, 2024
8b46385
chore: ci fix
Rajat-Dabade Jul 30, 2024
5d0f1ce
minor fix
Rajat-Dabade Jul 30, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
44 changes: 44 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Check-in tests

on:
push:
branches:
- 'main'
- 'releases-**'
pull_request:
workflow_dispatch:

env:
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
EXCLUDE_ENTERPRISE: true

jobs:
webapp-test:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
with:
path: "focalboard"
- name: npm ci
run: |
cd focalboard/webapp && npm ci

- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.21

- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 20.11.0

- name: Lint & test webapp
run: cd focalboard; make webapp-ci

- name: set up golangci-lint
run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.59.0

- name: Lint & test server
run: cd focalboard; make server-ci
67 changes: 0 additions & 67 deletions .github/workflows/dev-release.yml

This file was deleted.

63 changes: 0 additions & 63 deletions .github/workflows/prod-release.yml

This file was deleted.

29 changes: 3 additions & 26 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,10 @@ pids
go.work
go.work.sum

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release
Expand All @@ -43,36 +35,21 @@ build/Release

# Dependency directory
# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
node_modules
webapp/node_modules
webapp/dist
webapp/pack
dist
pack
package
bin
debug
__debug_bin
files
octo*.db
focalboard*.db
*.boardarchive
.eslintcache
.vscode/settings.json
# config.json is copied from app-config.json in the Makefile
mac/resources/config.json
mac/temp
mac/dist
mac/*.xcodeproj/**/xcuserdata
linux/bin
linux/dist
linux/temp
win/temp
win/dist
webapp/cypress/screenshots
webapp/cypress/videos
server/swagger/clients
server/vendor
.idea
docker/certs
docker/data
server/**/*.coverage
./dist
./vendor
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading
Loading