Skip to content

Commit cb14478

Browse files
committed
first commit
0 parents  commit cb14478

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+29621
-0
lines changed

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Editor configuration, see http://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
indent_style = space
7+
indent_size = 2
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.md]
12+
max_line_length = off
13+
trim_trailing_whitespace = false

.gitignore

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# compiled output
4+
dist
5+
tmp
6+
/out-tsc
7+
8+
# dependencies
9+
node_modules
10+
11+
# IDEs and editors
12+
/.idea
13+
.project
14+
.classpath
15+
.c9/
16+
*.launch
17+
.settings/
18+
*.sublime-workspace
19+
20+
# IDE - VSCode
21+
.vscode/*
22+
!.vscode/settings.json
23+
!.vscode/tasks.json
24+
!.vscode/launch.json
25+
!.vscode/extensions.json
26+
27+
# misc
28+
/.sass-cache
29+
/connect.lock
30+
/coverage
31+
/libpeerconnection.log
32+
npm-debug.log
33+
yarn-error.log
34+
testem.log
35+
/typings
36+
37+
# System Files
38+
.DS_Store
39+
Thumbs.db
40+
41+
.nx/cache
42+
.nx/workspace-data
43+
44+
45+
storybook-static

.prettierignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Add files here to ignore them from prettier formatting
2+
/dist
3+
/coverage
4+
/.nx/cache
5+
/.nx/workspace-data

.prettierrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"singleQuote": true
3+
}

.vscode/extensions.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"recommendations": ["nrwl.angular-console", "esbenp.prettier-vscode"]
3+
}

README.md

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
# Temporal Workshop for CityJS
2+
3+
## Notable Temporal Links
4+
5+
- [Get started with Temporal and TypeScript]()
6+
7+
### Public Courses
8+
9+
- [Temporal 101 with TypeScript](https://temporal.talentlms.com/catalog/info/id:135)
10+
- [Temporal 102: Exploring Durable Execution with TypeScript](https://temporal.talentlms.com/catalog/info/id:165)
11+
- [Versioning Workflows with TypeScript](https://temporal.talentlms.com/catalog/info/id:171)
12+
- [Interacting with Workflows with TypeScript](https://temporal.talentlms.com/catalog/info/id:207)
13+
- [Securing Temporal Applications with TypeScript](https://temporal.talentlms.com/catalog/info/id:211)
14+
- [Introduction to Temporal Cloud](https://temporal.talentlms.com/catalog/info/id:144)
15+
16+
17+
## Setting Up
18+
19+
### Requirements 🧰
20+
21+
- [Node.js LTS Version](https://nodejs.org)
22+
- [Git](https://git-scm.com/downloads)
23+
- [Docker Compose](https://docs.docker.com/compose/install)
24+
- Code editor:
25+
- [VSCode](https://code.visualstudio.com/)
26+
- [Cursor](https://www.cursor.com/)
27+
28+
### From Linux/Mac 
29+
30+
- Install Homebrew
31+
- Install tools using Homebrew:
32+
```sh
33+
brew install node
34+
brew install git
35+
brew install docker-compose
36+
npm install -g nx
37+
```
38+
39+
### Installation 📚
40+
41+
Commands used to create the project structure [here](./docs/INSTRUCTIONS_README.md).
42+
43+
## Usage
44+
45+
### Monorepo
46+
47+
Instructions to use Nx CLI [here](./docs/NX_README.md).
48+
49+
To see all available commands and options:
50+
```sh
51+
nx help
52+
```
53+
54+
For more information on using Nx, refer to the [Nx documentation](https://nx.dev/getting-started/intro).
55+
56+
### Run the web app
57+
58+
```sh
59+
npm run build
60+
npm run dev:web
61+
```
62+
63+

apps/web/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.cache
2+
build
3+
public/build
4+
.env

apps/web/app/root.tsx

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
import type { MetaFunction, LinksFunction } from '@remix-run/node';
2+
import {
3+
Links,
4+
LiveReload,
5+
Meta,
6+
Outlet,
7+
Scripts,
8+
ScrollRestoration,
9+
} from '@remix-run/react';
10+
import twStyles from './tailwind.css';
11+
export const links: LinksFunction = () => [
12+
{ rel: 'stylesheet', href: twStyles },
13+
];
14+
15+
export const meta: MetaFunction = () => [
16+
{
17+
title: 'New Remix App',
18+
},
19+
];
20+
21+
export default function App() {
22+
return (
23+
<html lang="en">
24+
<head>
25+
<meta charSet="utf-8" />
26+
<meta name="viewport" content="width=device-width, initial-scale=1" />
27+
<Meta />
28+
<Links />
29+
</head>
30+
<body>
31+
<Outlet />
32+
<ScrollRestoration />
33+
<Scripts />
34+
<LiveReload />
35+
</body>
36+
</html>
37+
);
38+
}

apps/web/app/routes/_index.tsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
2+
export default function Index() {
3+
return (
4+
<div>
5+
<h1>Welcome to ProjectX</h1>
6+
</div>
7+
);
8+
}

apps/web/app/tailwind.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
@tailwind base;
2+
@tailwind components;
3+
@tailwind utilities;

0 commit comments

Comments
 (0)