Skip to content

Commit

Permalink
Update landing workspace to be named www
Browse files Browse the repository at this point in the history
  • Loading branch information
ccali11 committed Dec 8, 2023
1 parent 0fb4544 commit 6dda456
Show file tree
Hide file tree
Showing 56 changed files with 9,080 additions and 6,153 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"css.lint.unknownAtRules": "ignore",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
"source.fixAll.eslint": "explicit"
},
"eslint.validate": [
"vue",
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
- [Environment Variables](#environment-variables)
- [Apps](#apps)
- [@casimir/web](#casimirweb)
- [@casimir/landing](#casimirlanding)
- [@casimir/www](#casimirwww)
- [Contracts](#contracts)
- [@casimir/ethereum](#casimirethereum)
- [Common](#common)
Expand All @@ -41,7 +41,7 @@ Configure the following prerequisite global dependency versions.

1. [Docker (v24.x)](https://docs.docker.com/engine/install/).

2. [Go (v1.18.x)](https://golang.org/doc/install).
2. [Go (v1.20.x)](https://golang.org/doc/install).

3. [Node.js (v18.x)](https://nodejs.org/en/download/).

Expand Down Expand Up @@ -142,16 +142,16 @@ npm run dev

See the [@casimir/web README.md](apps/web/README.md) for detailed documentation.

#### @casimir/landing
#### @casimir/www

Run the landing app.
Run the www app.

```zsh
# From the root directory
npm run dev:landing
npm run dev:www
```

See the [@casimir/landing README.md](apps/landing/README.md) for detailed documentation.
See the [@casimir/www README.md](apps/www/README.md) for detailed documentation.

### Contracts

Expand Down Expand Up @@ -221,7 +221,7 @@ Code is organized into work directories (apps, common, contracts, infrastructure
β”œβ”€β”€ .github/ (workflows and issue templates)
| └── workflows/ (gh actions workflows)
β”œβ”€β”€ apps/ (frontend apps)
| |── landing/ (landing page app)
| |── www/ (www page app)
| └── web/ (main web app)
β”œβ”€β”€ common/ (shared code)
| β”œβ”€β”€ data/ (data schemas and operational workflows)
Expand Down
1 change: 0 additions & 1 deletion apps/landing/README.md

This file was deleted.

File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions apps/www/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Casimir www App
File renamed without changes.
2 changes: 1 addition & 1 deletion apps/landing/package.json β†’ apps/www/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@casimir/landing",
"name": "@casimir/www",
"description": "Casimir landing page",
"private": true,
"scripts": {
Expand Down
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion infrastructure/cdk/src/providers/landing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export class LandingStack extends cdk.Stack {

new s3Deployment.BucketDeployment(this, config.getFullStackResourceName(this.name, "bucket-deployment"), {
destinationBucket: bucket,
sources: [s3Deployment.Source.asset("../../apps/landing/dist")],
sources: [s3Deployment.Source.asset("../../apps/www/dist")],
distribution,
distributionPaths: ["/*"]
})
Expand Down
Loading

0 comments on commit 6dda456

Please sign in to comment.