The online presence of Liferay's Design Teams!
Designed in Figma, built with Gatsby, powered by Netlify.
- Liferay.Design
Skip down to Starting Phresh for a step-by-step guide.
-
Install Dependencies
- open Terminal and type:
npm install
- hit Enter, then do the same for the command below
-
Start up the dev server
npm run dev
-
Your favorite browser should open automatically showing the site at
http://0.0.0.0:localhost:7777
!- It will also be accessible on your network at
your.local.ip:7777
β usually this will be something like192.168.1.160:7777
β the command line prompt will specify your address. - This makes mobile development easier, since you can check the site out on any device that's on your network.
- It will also be accessible on your network at
-
See the Contributing Guidelines for what to do after you make some improvements!
Work and submit pull requests from the master
branch.
Note: The Dev
branch is no longer being actively used βΒ the use-case for it is no longer necessary thanks to Netlify's Deploy Previews.
Currently live on dev.liferay.design. This is our pre-production environment, best not to send pull requests to it unless there's a special scenario.
Currently live on liferay.design, don't work on Production as your pull request typically won't get accepted.
We save "versions" of the site as branches β v1 (for example) was the first ever version of the site.
TODO: deploy old versions on subdomains.
This contains the scripts that make the site magically appear when new work gets pulled into the repo β real developers made this for us, and we generally don't touch it.
The src folder is where all the code is that gets compiled into a public
folder which gets rendered onto the interwebs at our domain. We roughly follow atomic design principles.
Where all of our react components live β atoms, molecules, organisms, templates, and theme.
This is where 98.3% of the site content lives β markdown is a lot easier to write than html π€.
This is new experimental territory to render react components in md files, so you will propbably run into some quirks!
- Rename the file extension from
.md
to.mdx
- If you have markup in the file, you will now have to make it React friendly (change
class
toclassName
andstyle=""
tostyle={{}}
) - Import the component as normal and use it as normal :)
---
title: 'Markdown File Title'
---
<div className="aspect-ratio card-item-first" style={{background: "url('/images/logos/liferay-logo.png') center/cover"}}>
<Icon name="keyboardArrowDown" />
</div>
- Notes: - For
.mdx
file syntax highlighting you can download the "Mdx" extension and follow their instructions - Don't put an extra line break between markup as it will think it will print out the literal markup for some reason
Surprise surprise, this is where the code for the main pages of liferay.design lives.
Stylesheets and other theme-related files.
generateIcons.js
will take any svg in the static / images / icons
folder and add it to the icons
component.
This is where we store all the... you guessed it, images! There's probably a better way to do this, so please help us out.
A quick look at the top-level files and directories you'll see in a Gatsby project.
.
βββ node_modules
βββ src
βββ .gitignore
βββ .prettierrc
βββ gatsby-browser.js
βββ gatsby-config.js
βββ gatsby-node.js
βββ gatsby-ssr.js
βββ LICENSE
βββ package-lock.json
βββ package.json
βββ README.md
-
/node_modules
: The directory where all of the modules of code that your project depends on (npm packages) are automatically installed. -
/src
: This directory will contain all of the code related to what you will see on the front-end of your site (what you see in the browser), like your site header, or a page template. βSrcβ is a convention for βsource codeβ. -
.gitignore
: This file tells git which files it should not track / not maintain a version history for. -
.prettierrc
: This is a configuration file for a tool called Prettier, which is a tool to help keep the formatting of your code consistent. -
gatsby-browser.js
: This file is where Gatsby expects to find any usage of the Gatsby browser APIs (if any). These allow customization/extension of default Gatsby settings affecting the browser. -
gatsby-config.js
: This is the main configuration file for a Gatsby site. This is where you can specify information about your site (metadata) like the site title and description, which Gatsby plugins youβd like to include, etc. (Check out the config docs for more detail). -
gatsby-node.js
: This file is where Gatsby expects to find any usage of the Gatsby node APIs (if any). These allow customization/extension of default Gatsby settings affecting pieces of the site build process. -
gatsby-ssr.js
: This file is where Gatsby expects to find any usage of the Gatsby server-side rendering APIs (if any). These allow customization of default Gatsby settings affecting server-side rendering. -
LICENSE
: Gatsby is licensed under the MIT license. -
package-lock.json
(Seepackage.json
below, first). This is an automatically generated file based on the exact versions of your npm dependencies that were installed for your project. (You wonβt change this file directly). -
package.json
: A manifest file for Node.js projects, which includes things like metadata (the projectβs name, author, etc). This manifest is how npm knows which packages to install for your project. -
README.md
: A text file containing useful reference information about your project.
Looking for more guidance? Full documentation for Gatsby lives on the website. Here are some places to start:
-
For most developers, we recommend starting with our in-depth tutorial for creating a site with Gatsby. It starts with zero assumptions about your level of ability and walks through every step of the process.
-
To dive straight into code samples head to our documentation. In particular, check out the βGuidesβ, API reference, and βAdvanced Tutorialsβ sections in the sidebar.
This is written for people who generally try to avoid the terminal β it can be scary, but Liferay.Design is a lot like Zelda (you don't have to go alone π₯)!
Any of the designers here can help you, or at least point you to someone who can.
Set aside about 45 β 60 min to get set up.
- Set up a personal account
- Choose the "free" plan
- Tailor your experience β if you'd like, this can be helpful
- Read Hello World and complete the tutorial. (10 min)
- If you really, really, really aren't interested in this "technical" stuff, then this tutorial covers everything you'll need to create your bio page.
- Read Chris' post on Git Commit Messages β this will help you avoid Paul-like commit messages.
- Read the Git Handbook (10 min) for a good overview on the theory behind Git and GitHub.
- NB This is important and helpful information to understand at a high level because Liferay uses Git.
- Check out the GitHub's resources, and the team's Trello cards on Git.
- Congratulate Paul on that amazing section title π
- Visit our Phresh-N-Clean guide β this whole thing is pretty helpful for setting up your computer in a way that it can quickly and easily be reformatted and restored will help your computer stay faster, better, longer. (So you can
work it
.) - Complete steps 1, 2, 4, and 6 of the Set Up portion
- Install a code editor β Sublime Text or VSCode.
brew cask install sublime-text
orbrew cask isntall visual-studio-code
- Pat yourself on the back, you're almost done β the last thing to do is get a local copy (code on your computer) of the site repository (repo for short).
- Orient yourself
- Open your Terminal and type
ls
and hit Enter β this command will list the files and folders of the current directory (folder) - Type
open .
and hit Enter β this will open up Finder to the current directory. - Type
mkdir github
and hit Enter β now look at your Finder, you should now see a new folder labeled 'github' in your Home directory (~/
) - Type
cd github
and hit Enter β you've now navigated to the github folder in your Terminal!
- Note that this is our suggested method for organizing your repos, feel free to organize differently.
- Open your Terminal and type
- Now that your Terminal is open to your github folder, it's time to clone the repo!
- Copy the url to your clipboard (there's a handy little button π)
- Type
git clone
, paste the repo url and hit Enter β cloning should take about 10 seconds. - Now you need to navigate to the folder β type
cd life
and hit Tab, it should autocomplete toliferay.design
β if it does, hit enter, if not, finish typing it out - Take your fingers off the keyboard, and give yourself a hand, you're now ready to begin development!
-
Pushing work to any of the branches will automagically build the site
-
You can check the progress of current and past builds by checking our Netlify Deploys page.