Skip to content

Commit b3d3e24

Browse files
committed
Add seed nodes to production and cleanup unused files
1 parent 9e1206c commit b3d3e24

26 files changed

+31
-11900
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6161

6262
### Added
6363

64+
- **Frontend**: add production seed nodes for the production environment
65+
([#1837](https://github.com/o1-labs/mina-rust/issues/1837)
6466
- **Website**: Update Docusaurus to version 3.9.2 from 3.9.1 for latest
6567
features and bug fixes
6668
([#1583](https://github.com/o1-labs/mina-rust/pull/1583))

frontend/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
# Generated by running: ./generate-docker-env.sh
2626
#
2727
# REQUIRED ENVIRONMENT VARIABLES:
28-
# MINA_FRONTEND_ENVIRONMENT - Frontend configuration (local|webnode|production|fuzzing|staging)
28+
# MINA_FRONTEND_ENVIRONMENT - Frontend configuration (local|webnode|production)
2929
#
3030
# USAGE:
3131
# # Generate .env.docker with current git information

frontend/docker/startup.sh

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,6 @@ build_frontend() {
2020
# Uses Angular local configuration and local.js runtime
2121
make build-local
2222
;;
23-
"fuzzing")
24-
# Uses Angular fuzzing configuration and fuzzing.js runtime
25-
make build-fuzzing
26-
;;
2723
"production")
2824
# Uses Angular production configuration and production.js runtime
2925
make build-production
@@ -32,13 +28,9 @@ build_frontend() {
3228
# Uses Angular webnode-local configuration and webnode.js runtime
3329
make build-webnode
3430
;;
35-
"staging")
36-
# Uses Angular production configuration with staging.js runtime
37-
make build-staging
38-
;;
3931
*)
4032
echo "Error: Unknown environment '$environment'"
41-
echo "Available environments: local, fuzzing, production, webnode, staging"
33+
echo "Available environments: local, production, webnode"
4234
exit 1
4335
;;
4436
esac
@@ -54,7 +46,7 @@ build_frontend() {
5446
# Validate that MINA_FRONTEND_ENVIRONMENT is set
5547
if [ -z "$MINA_FRONTEND_ENVIRONMENT" ]; then
5648
echo "Error: MINA_FRONTEND_ENVIRONMENT environment variable is required."
57-
echo "Available environments: local, fuzzing, production, webnode, staging"
49+
echo "Available environments: local, production, webnode"
5850
echo "Example: docker run -e MINA_FRONTEND_ENVIRONMENT=webnode mina-frontend"
5951
exit 1
6052
fi

frontend/public/environments/compose-producer.js

Lines changed: 0 additions & 26 deletions
This file was deleted.

frontend/public/environments/compose.js

Lines changed: 0 additions & 25 deletions
This file was deleted.

frontend/public/environments/staging.js

Lines changed: 0 additions & 38 deletions
This file was deleted.

frontend/public/o1js/.babelrc

Lines changed: 0 additions & 3 deletions
This file was deleted.

frontend/public/o1js/.gitignore

Lines changed: 0 additions & 3 deletions
This file was deleted.

frontend/public/o1js/babel.config.json

Lines changed: 0 additions & 3 deletions
This file was deleted.

frontend/public/o1js/bootstrap.js

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)