mirror of
https://github.com/vacp2p/vac.dev.git
synced 2026-01-08 22:28:01 -05:00
* Add new design * Use yarn instead of npm * Add 404 page style * Update "See VAC Openings" CTA * Change VAC to Vac * Change specs link * Keep post categories * Change code formatting * Update images * Update media links * Add media image default * Update package.json * Add twitter cards meta data * Add media section back * Remove images * Comment script for form * Change media urls to https * Import font locally * Add Anonymous font * Change inner page layout * Change pre code style * Add font preloading * Change post content styles * Add alt attribute * Change footer research links * Update gitignore * Add Fathom analytics * Update links * Change gif to video * Add work cards links back * Change footer spacing * Change logo size * Fix header * Centered section join * Make cards clickable * Align left section join * Remove graphic & video section about * Return logo size * Add post for Waku v1 vs Waku v2 bandwidth comparison (#43) * Add post for Waku v1 vs Waku v2 bandwidth comparison * Addressing PR comments * Added future work. Minor changes to intro. (cherry picked from commit007696cfc9) * Add <code> styles * Add Hanno page * Add opinion piece on ethics in surveillance tech (#44) * Add opinion piece on ethics in surveillance tech * Change published date. Added preface. * wrong date - today is 3rd (cherry picked from commitc64f5a889e) * Add circe page Co-authored-by: Hanno Cornelius <68783915+jm-clius@users.noreply.github.com> Co-authored-by: thecirce <95408261+thecirce@users.noreply.github.com> Co-authored-by: Hanno Cornelius <68783915+jm-clius@users.noreply.github.com> Co-authored-by: thecirce <95408261+thecirce@users.noreply.github.com>
This commit is contained in:
committed by
Jinho Jang
parent
c64f5a889e
commit
59b95cdc98
41
README.md
41
README.md
@@ -1,8 +1,35 @@
|
||||
# vac
|
||||
# Vac.dev Website
|
||||
|
||||
1. Install a full [Ruby development environment](https://jekyllrb.com/docs/installation/),
|
||||
You need v2.7.
|
||||
2. Install Jekyll and [bundler gems](https://jekyllrb.com/docs/ruby-101/#bundler).
|
||||
3. Change into your cloned repo
|
||||
4. Build the site and make it available on a local server: `bundle exec jekyll serve`
|
||||
5. Now browse to http://localhost:4000
|
||||
Originally created by [EthWorks](https://ethworks.io/).
|
||||
|
||||
# Development
|
||||
|
||||
- Install Depndencies:
|
||||
```
|
||||
yarn install
|
||||
bundle install
|
||||
```
|
||||
- Build Website
|
||||
```
|
||||
yarn run build
|
||||
```
|
||||
- For development or server:
|
||||
```
|
||||
yarn run dev
|
||||
yarn run start
|
||||
```
|
||||
|
||||
# Continuous Integration
|
||||
|
||||
- `develop` branch is pushed to [dev.vac.dev](https://dev.vac.dev) via [this CI Job](https://ci.status.im/job/website/job/dev.vac.dev/)
|
||||
- `master` branch is pushed to [vac.dev](https://vac.dev) via [this CI Job](https://ci.status.im/job/website/job/vac.dev/)
|
||||
|
||||
# Known Issues
|
||||
|
||||
### Bundler and Jekyll on Apple M1 (with Ruby `x86_64`)
|
||||
|
||||
```sh
|
||||
arch -x86_64 gem install --user-install bundler jekyll
|
||||
echo 'export PATH="~/.gem/ruby/2.6.0/bin:$PATH"' >> ~/.zshrc
|
||||
bundle update
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user