Intro
This is an opensource project which brings people and communities together to take action on causes they care about, both in-person locally and also globally. Locally the platform collects and rates the most effective ways people can take action on that cause. Globally it allows users to discuss, vote on, and then use their skills to build projects together which target positive action on that issue.
The project also rewards users with a blockchain token to incentivise and reward action which benefits the each platforms mission, or the health and growth of the community built on it.
Main causes and branches
The codebase for all projects is identical as its purpose is the same, to unite people to take action on a cause they care about. All differences are coded in a language app (i18n) which loads them for each different site.
To join in
Tasks, issues, documentation and bugs are on our Meta platform at Publichappinessmovement.com in the Web-dev, Reactjs and Documentation categories.
Want to get coding? The most likely page you are looking for is the Getting Started Guide here: https://publichappinessmovement.com/t/topic/1370
Or comment with your skills and what you want to gain from working on our kinder-world open source mission and one of the other team members will guide you to getting started: https://publichappinessmovement.com/c/web-developers/
Main org and all project files
Please note the guide below is depreciated The current Getting Started Guide is linked above.
This is the base branch for the new react-based fl-maps project.
All edits are initially made in this master branch (fl-maps), and then copy/pasted into the fl-sleeper branch, and a separate PR made to the fl-sleeper branch (refer to note "Copying changes with git cherry-pick" under the "Workflow" section below, for how to automatically copy the changes across) unless they are in the i18n folder. We aim to keep the codebase identical as much as possible until the team expands.
All text and labels viewable to users must be defined in the i18n folder to be ready for multi-language support - this file is also used to define differences between both maps, The Public Happiness Platform at focallocal.org and Our Homelessness project at brightertomorrowmap.com.
When the active team grows the two codebases can diverge, if you'd like to lead/support one side or advertise for more devs to join our build, let Andy know.
The project is based on Meteor and React. (try a todo-list tutorial if you've never used one of them)
1) Join our platform, and make your way through the 'getting started guide' which superseeds this Readme 2) Set up a local dev enviroment (most of us use Atom.io). Settings.json is pinned to the #meteor-maps channel in Slack. (let us know if you have difficulties, a lot of people find setting up fiddly) 3) Set your intentions. Click the 'calendar' tab in the forum and plan how often and when you want to contribute (we find people are far more liklely to drop the commitment they want to make without setting themselves this reminder) 4) Assign yourself a task
1) Begin each work session by reviewing others pull requests in Github and commenting on your findings. It helps to keep everyone up to date with whats going on and create a self-checking community. If you're the 3rd dev commenting/checking please tag @AndyatFocallocal to merge the PR.
Copying changes with git "git cherry-pick": As mentioned above, changes to the codebase are done to the master branch and copy/pasted onto the fl-sleeper branch in a separate PR. Copy/pasting can be done directly through the CLI as follows:
Make a note of your commit id in the master branch. Assuming the most recent commit is the one you want to copy:
git log -1
Checkout the latest fl-sleeper branch onto which you want to copy across the changes
git checkout <TARGET-BRANCH-NAME>
Use "git cherry-pick" to apply the exact insertions and deletions from your master branch commit, onto the target fl-sleeper branch that you have just checked out
git cherry-pick <COMMIT ID>
This will copy across the changes without affecting any other files. In the very unlikely scenario there are conflicts you would need to resolve these before the cherry-pick executes. Note: if there is more than one commit to copy across, you need to include all relevant commit IDs in the command.
install meteor
create a fork of this repository and then
git clone https://github.com/your-github-username/fl-maps
Set up git
git remote add upstream https://github.com/focallocal/fl-maps
// make sure there are 2 remotes (origin that points to your fork and upstream for the original repo)
git remote -v
every time you start working on a new feature, run: git pull upstream master
which ensures you are always working with the most updated version of the project.
create a new branch git checkout -b new-feature-name
obtain the most recent settings.json file from slack, its pinned in the #meteor-maps thread, and place it in the project's folder
'mapType': 'gatherings'
,
you can change 'gatherings' to 'btm' to work on Focallocal or Brighter Tomorrowrun the project
meteor npm install
npm run start // see notes below if it fails to run
make changes
run tests (npm test
or npm run test-watch
)
if all the tests have passed, run
git add .
git commit -m 'description of what has changed'
git push origin your_working_branch_name
go to github and create a new pull request from your fork (make sure it's against the fl-maps/master branch)
meteor npm rebuild node-sass --force
Currently you'll see a Compiled with warnings. message, ignore it.
For step (5) be sure you don't run meteor npm install
twice. Just do it once followed by npm run start
and it will work.
If you've tried the above, and things still aren't working you may need to update your version of node & npm. First, check your version of node by running node -v
, and take note of it. The current version of node as of writing this is 11.9.0.
To update node, install the package n
, by running the command: npm install -g n
. After the installation, run n latest
. note: you may need to run sudo n latest
, if on Mac or Linux.
Updating npm is quite simple, the command being: npm install -g npm
.
After updating the packages, close your current terminal and open a new one, so that the changes may take effect. Confirm the update by typing node -v
.
The map utilizes Discourse for its forums and SSO. It will likely also use Discourse Messaging for notifications/users setting how often they receive notifications. The idea has been floated of also using it for users profiles, but that needs more discussion.
Recently, the app layout has been changed so that the Discourse forum can be displayed side by side with the map (try the green vertical split bar). This has two advantages:
Docuss is composed of:
For example, this is how, from the Meteor app, you can change the forum url to the dcs-foo
tag page:
import { dcs } from "/imports/client/utils/dcs-master"
dcs.gotoTag('dcs-foo')
Docuss is in prototype phase and lacks documentation. Please get in touch with @syl on Slack if you have any questions.
The first thing you should know is that this is not a typical meteor app:
We favor imports statements over global variables
And also npm modules over meteor's packages (as much as possible)
We replace meteor's built in compiler with meteor-webpack
.
this allows us to take advantage over many great webpack-based tools like react-hot-loader among others..
We use jest as a test runner for most of the ui parts
Our project is based on a library called reactstrap which provides several react-components which are based on bootstrap. That means that usually instead of writing plain html tags, you'll be able to just use one of the components provided by reactstrap.
for example, instead of writing a button element like this
// plain html
<button className='primary'>My Button</button>
you can check on the documentation of reactstrap if it provides a button component, and since it does, you can just use
import { Button } from 'reactstrap'
<Button color="primary">primary</Button>
We use the react-google-maps package for anything related to google-maps. if you need to work with it - please follow it's docs https://tomchentw.github.io/react-google-maps/
We use the react-select package for select elements, you can learn how to use it here: https://deploy-preview-2289--react-select.netlify.com/
The following is a list of the packages that you should be familiar with:
Please make sure you are familiar with those packages before attempting to use them
This project uses the standard coding style guidelines (enforced by eslint-standard-config)
Please ensure your text editor is configured to use a linter so it can warn you about an incorrect code
React-hot-loader will only hot-reload for changes that are made inside the
Both of the maps (gathering and brightertomorrow) are using the same code base - we differentiate their strings by using different i18n files for each.
Goal for users: Posting something new onto the map
Platform goal: Growing a positive and active community focused on the subject chosen for that map
When users visit the map the should feel: Connected to a Community
The platform should be:
positive
action focused
welcoming and cheerful
We are building two maps together to ensure the platform remains focused on the Core Design Considerations, rather than wondering towards one specific issue. This keeps community at the center of our build, and ensures the map can become a useful open source platform for others later
Upon reaching v1: Our development of the Brighter Tomorrow Map will slow, the platform will be released as open source for others to use. The Focallocal.org map build will continue and specialize to better integrate with the other areas of the Focallocal.org platform
The Orange main menu and its text 'Focallocal' are used in all projects built by the Focallocal Public Happiness community, so members can easily identify the project, and to maintain the positive and cheerful atmosphere in all related projects.
We have two maps based on the same codebase at the moment. We're keeping the code merged until v0.3 as it helps to keep them both focused on their core ethos 'community connection', and enables them both to launch at the same time. The Homelessness map, and the community hub that will push it out to help people around the world.
Map 1 - The Brighter Tomorrow Map focuses on reducing homelessness through community connection.
Map 2 - Focallocal.org focuses on connecting people to take action where they live and improve well-being, that includes by building projects like The Brighter Tomorrow Map, which is our flagship project
In GitHub you'll find two main branches 'master' and 'fl-sleeper'. Any differences between the two are stated in our language plugin i18n. All text visible to users should be set in i18n so it can be changed easily between the two (at some point in the future we'll probably turn this into a user friendly backend).
When code you are working on is/needs to be different in the two maps, the code to change can be found in i18n. This is generally text, links and images. (search i18n in the project to find its folder).
we have three hosts;
vultr.com wehostinghub.com digitalocean.com
they are all being routed through cloudflare, but the nameservers for Vultr.com are the only ones pointing at cloudflare's nameservers.
We have our domain registered at Hihosting.co.uk, and the nameservers point to cloudflare.
Focallocal.org is building towards a decentralized community where anyone can join to work on projects and take action to build a friendlier happier and safer world around them. Its a hub for our volunteer community to coordinate, collaborate, and begin to grow. Its also not very good right now (i built most of it (Andy)) and it is fragmented.
What it is, is a minimum functional platform to support a community who will redesign and improve it to meet their needs as they grow; its also a pool of skills, like marketing experts, graphic designers, etc, to contribute to both maps, and many other Public Happiness projects built by our community. Anyone joining in one of our projects to create a happier world is a member of the Focallocal Community and you're all also welcome to improve other areas of focallocal.org - it's your platform
if you have any need to edit Docus, most files including home directory can be found here: https://github.com/focallocal/fl-maps/blob/master/imports/client/ui/app.js
Its repo is here: https://github.com/sylque/dcs-discourse-plugin/issues and you need to tag @sylque in the repo to discuss development