This is a combination of 8 commits.

 This is the 1st commit message:

add acknowledges file

rename script

rename script

add generation to dockerfile

add to go server

use a different name and path

add script to package.json

update .gitignore

add package

update robots

 The commit message #2 will be skipped:

 add package

 The commit message #3 will be skipped:

 update .gitignore

 The commit message #4 will be skipped:

 add script to package.json

 The commit message #5 will be skipped:

 use a different name and path

 The commit message #6 will be skipped:

 add to go server

 The commit message #7 will be skipped:

 add generation to dockerfile

 The commit message #8 will be skipped:

 rename script
This commit is contained in:
Hailey
2024-05-15 22:32:39 -07:00
parent 3674c8abce
commit 86cf087238
6 changed files with 871 additions and 7 deletions
+3
View File
@@ -115,3 +115,6 @@ src/locale/locales/**/*.js
*.apk
*.aab
*.ipa
# license file
bskyweb/static/ACKNOWLEDGEMENTS.txt
+1
View File
@@ -38,6 +38,7 @@ RUN \. "$NVM_DIR/nvm.sh" && \
echo "EXPO_PUBLIC_BUNDLE_DATE=$(date -u +"%y%m%d%H")" >> .env && \
npm install --global yarn && \
yarn && \
yarn generate-acknowledgements-file && \
yarn intl:build && \
EXPO_PUBLIC_BUNDLE_IDENTIFIER=$EXPO_PUBLIC_BUNDLE_IDENTIFIER EXPO_PUBLIC_BUNDLE_DATE=$() yarn build-web
+1
View File
@@ -144,6 +144,7 @@ func serve(cctx *cli.Context) error {
}())
e.GET("/robots.txt", echo.WrapHandler(staticHandler))
e.GET("/ACKNOWLEDGEMENTS.txt", echo.WrapHandler(staticHandler))
e.GET("/ips-v4", echo.WrapHandler(staticHandler))
e.GET("/ips-v6", echo.WrapHandler(staticHandler))
e.GET("/.well-known/*", echo.WrapHandler(staticHandler))
+1
View File
@@ -7,3 +7,4 @@
# be ok.
User-Agent: *
Allow: /
Disallow: /ACKNOWLEDGEMENTS.txt
+3 -1
View File
@@ -46,7 +46,8 @@
"export": "npx expo export",
"make-deploy-bundle": "bash scripts/bundleUpdate.sh",
"generate-webpack-stats-file": "EXPO_PUBLIC_GENERATE_STATS=1 yarn build-web",
"open-analyzer": "EXPO_PUBLIC_OPEN_ANALYZER=1 yarn build-web"
"open-analyzer": "EXPO_PUBLIC_OPEN_ANALYZER=1 yarn build-web",
"generate-acknowledgements-file": "npx generate-license-file --input ./package.json --output ./bskyweb/static/ACKNOWLEDGEMENTS.txt"
},
"dependencies": {
"@atproto/api": "^0.12.10",
@@ -244,6 +245,7 @@
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-native-a11y": "^3.3.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"generate-license-file": "^3.4.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
+862 -6
View File
File diff suppressed because it is too large Load Diff