Skip to content

Commit 1111938

Browse files
committed
Initial commit
0 parents  commit 1111938

File tree

5 files changed

+3126
-0
lines changed

5 files changed

+3126
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

CODE_OF_CONDUCT.md

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Code of Conduct
2+
3+
This code of conduct governs this repo, the organizers and organizers' communication
4+
channels, as well as the event.
5+
6+
We draw heavily from the [RustConf Code of Conduct](https://rustconf.com/about/#code-of-conduct).
7+
8+
## WebAssembly Summit is intended to be an inclusive, welcoming conference for everyone.
9+
10+
In particular, we do not tolerate harassment of conference participants or organizers in any form. Conference participants and organizers violating these rules may be sanctioned or expelled from the conference at the discretion of the conference organizers.
11+
12+
Harassment includes disparaging verbal comments related to gender, gender identity and expression, sexual orientation, disability, physical appearance, body size, race, age, or religion; sexual images in public spaces; deliberate intimidation; stalking; sustained disruption of talks or other events; inappropriate physical contact; and unwelcome sexual attention. Participants and organizers asked to stop any harassing behavior are expected to comply immediately.
13+
14+
If a participant or organizer engages in harassing behavior, the conference organizers may take any action they deem appropriate, including warning the offender or expulsion from the conference with no refund. If you are being harassed, notice that someone else is being harassed, or have any other concerns, please contact a member of conference staff immediately.
15+
16+
On-site, conference staff will be identifiable by their Wasm purple tshirts. If you need help of any kind, to report a bad situation, or anything else not specified that we can help with, please find us on site, DM us on twitter, or call/text.
17+
18+
Organizers contact info:
19+
20+
- Ashley Williams, [@ag_dubs]
21+
- Aaron Turner, [@torch2424]
22+
- Michael Hablich, [@mhablich]
23+
- Surma, [@dassurma]
24+
25+
For less urgent matters, or advance matters, please email us at [email protected].
26+
27+
[@ag_dubs]: https://twitter.com/ag_dubs
28+
[@torch2424]: https://twitter.com/torch2424
29+
[@dassurma]: https://twitter.com/dassurma
30+
[@mhablich]: https://twitter.com/mhablich

README.md

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# [webassembly-summit.org](https://webassembly-summit.org)
2+
> the landing page for WebAssembly Summit
3+
4+
[![Actions Status](https://github.com/webassemblysummit/webassembly-summit.org/workflows/Deploy%20production%20site/badge.svg)](https://github.com/webassemblysummit/webassembly-summit.org/actions)
5+
6+
WebAssembly Summit is a one day, single-track, conference for all things WebAssembly.
7+
8+
# Contributing
9+
10+
This projects is bundled and run using [Node.js](https://nodejs.org/), thus it must be installed on your system. To install the latest LTS version of Node.js (which includes npm). This can be done with nvm. (Mac and Linux: [here](https://github.com/creationix/nvm), Windows: [here](https://github.com/coreybutler/nvm-windows)).
11+
12+
Contributions should start by [opening an issue](https://github.com/WebAssemblySummit/webassembly-summit.org/issues) and describing what you would like to accomplish. UI features may require a design or mock-up of what you are thinking of implementing. Once consensus or approval of the taks has been given, feel free to start cading, and open a PR!
13+
14+
## Building & Running the project
15+
16+
1. Ensure that [Node.js](https://nodejs.org/) (install instructions above), and [yarn](https://yarnpkg.com/lang/en/docs/install) are installed on your system.
17+
2. Enter the project directory, and install the project dependencies by running: `yarn`.
18+
3. Run a development server with `yarn run dev`.
19+
20+
For building the project, you can run `yarn run build`, and serving the project you can run `yarn run start`.

0 commit comments

Comments
 (0)