
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
@baseplate-sdk/web-app
Advanced tools
First, install pnpm and Docker. Ensure your NodeJS version is >=20.
# Create .env files
cp .env.example .env.dev
# Now fill in values of .env.dev
# Now pnpm install
pnpm install
pnpm run develop
# new terminal tab
pnpm exec sequelize db:migrate
pnpm exec sequelize db:seed:all
open http://localhost:7600
To debug the NodeJS server in Visual Studio Code, first start up the database and frontend:
pnpm run dev:vscode
Then click on "Run and Debug" in VS Code, and press Start for Develop Backend.
docker-compose exec db bash
psql baseplate
# show tables
\dt
select * from "Users";
Database migrations are done via sequelize cli. You must run them manually whenever there's a new migration. Make sure you are running pnpm run develop or pnpm run develop:db before attempting to run migrations.
# Run migrations
pnpm exec sequelize db:migrate
# Undo last migration
pnpm exec sequelize db:migrate:undo
# Undo all migrations
pnpm exec sequelize db:migrate:undo:all
# Create migration
pnpm exec sequelize migration:create --name INSERTNAMEHERE
Seed data (sample user, etc) is created via sequelize cli. You must run them manually. Make sure you are running pnpm run develop or pnpm run develop:db before attempting to seed.
# Run seeds
pnpm exec sequelize db:seed:all
# Undo last migration
pnpm exec sequelize db:seed:undo
# Undo all seeds
pnpm exec sequelize db:seed:undo:all
# Create migration
pnpm exec sequelize seed:create --name INSERTNAMEHERE
If you want to just nuke your database and start fresh, run the following commands:
docker-compose down -v
docker-compose up -d
sleep 1
pnpm exec sequelize db:migrate
pnpm exec sequelize db:seed:all
FAQs
Customer web app for Baseplate
The npm package @baseplate-sdk/web-app receives a total of 1 weekly downloads. As such, @baseplate-sdk/web-app popularity was classified as not popular.
We found that @baseplate-sdk/web-app demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.