All Projects → Mintbean → DevCollective.io

Mintbean / DevCollective.io

Licence: MIT license
DevCollective.io is an open source community of developers, by developers, for developers. If you like what we're doing, don't pay us. Just pay it forward. How? Check out the Discussion and Issues tabs. We're a diverse, inclusive and newbie-friendly project.

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language
SCSS
7915 projects

Projects that are alternatives of or similar to DevCollective.io

colt-steele-advanced
Notes for the Colt Steele Advanced Boot Camp
Stars: ✭ 29 (-25.64%)
Mutual labels:  bootcamp
slack-community
Docs related to DDD-CQRS-ES Discord Community
Stars: ✭ 58 (+48.72%)
Mutual labels:  community
platform
Community platform for dancers
Stars: ✭ 30 (-23.08%)
Mutual labels:  community
buscador-ao
Ponto de obtenção de informações públicas de Angola
Stars: ✭ 21 (-46.15%)
Mutual labels:  community
createurstech.fr
Première plateforme collaborative et open source qui référence les créateurs de contenus tech francophone.
Stars: ✭ 174 (+346.15%)
Mutual labels:  community
wishlist
This repo is to propose libraries, frameworks, and code in general that users would like to have in conan
Stars: ✭ 49 (+25.64%)
Mutual labels:  community
WebXDAO.github.io
Main website built with Next.js and Tailwind, and Community builded. 🛸
Stars: ✭ 39 (+0%)
Mutual labels:  community
Kopano
Scripts for Kopano
Stars: ✭ 25 (-35.9%)
Mutual labels:  community
nycmeshnet.github.io
NYC Mesh Website
Stars: ✭ 18 (-53.85%)
Mutual labels:  community
talksearch
🎤 An interactive search experience for video titles and transcripts
Stars: ✭ 24 (-38.46%)
Mutual labels:  community
community
🌎 REDAXO Community World Map
Stars: ✭ 91 (+133.33%)
Mutual labels:  community
twc-site
Site for Tech Workers Coalition
Stars: ✭ 22 (-43.59%)
Mutual labels:  community
commons.openshift.org
Repository for OpenShift Commons Community Site
Stars: ✭ 31 (-20.51%)
Mutual labels:  community
partinfra-terraform
Terraform configuration for Participation Infrastructure
Stars: ✭ 46 (+17.95%)
Mutual labels:  community
SuluCommunityBundle
Community features like Login, Registration, Password forget/reset for your sulu application.
Stars: ✭ 20 (-48.72%)
Mutual labels:  community
bootcamp-launchbase-desafios-03
Desafios do terceiro módulo do Bootcamp Launchbase 🚀👨🏻‍🚀
Stars: ✭ 53 (+35.9%)
Mutual labels:  bootcamp
desafios-bootcamps-dio
Desafios em C#, Java, JavaScript, Kotlin, Python e Ruby dos Bootcamps da Digital Innovation One
Stars: ✭ 442 (+1033.33%)
Mutual labels:  bootcamp
OpenSourceHelpCommunity.github.io
Open source help community website
Stars: ✭ 43 (+10.26%)
Mutual labels:  community
galaxy-hub
Galaxy Community Hub
Stars: ✭ 80 (+105.13%)
Mutual labels:  community
nuxtjsbrasil.github.io
Site da comunidade Nuxt Brasil (usando Nuxtjs) 😄
Stars: ✭ 21 (-46.15%)
Mutual labels:  community

DevCollective.io

Local development

1. Install Docker

You'll need to install Docker to enable Postgres. Windows users, please make sure to install WSL2 extensions as these are required for postgres to function correctly.

2. Install Yarn

For a variety of reasons, this project depends on yarn. You can install it using:

npm install -g yarn

3. Yarn install

This will install your dependencies.

yarn

4. Start your database

yarn dbup

This step creates 2 Postgres databases in Docker. The one on port 10800 is development, while the one on port 10801 is for unit tests.

Windows users:

If you see this error:

The command 'docker-compose' could not be found in this WSL 2 distro.

Then make sure in your docker desktop under Settings/General that "Use the WSL 2 based engine" is checked.

5. Run Pristine to create all your databases.

We have a convenienent command, yarn pristine, that re-creates and re-seeds the database. You can use this command at any time to wipe your database and reset it.

yarn pristine

Run Pristine every time the DB changes.

Pristine must be run after every DB change in order to update your database with the latest migrations.

Pristine can be used to reset your database

Pristine can be run at any time to reset your database to a clean state. This can come in handy in many situations.

If you encounter problems that Pristine doesn't solve

If you encounter deeper problems, you may want to just destroy your postgres instances and start from absolute scratch. There is a command that will destroy ALL docker images, containers, volumes that are not currently running. First, you will want to stop all docker processes related to this project, and then run docker system prune -a. NOTE: This is a dangerous command that will destroy EVERYTHING that isn't currently running in Docker, including any non-DC.io projects.

6. Declare custom port number to start the application

** The creation of this file is optional. If you don't create this file in dev environment, then default values will be used from dev.env file present in dev folder.

First create dev-override.env file in dev folder present in root directory. Then copy and paste the following fields in your file.

PORT= *

In place of * you can declare your own port number that is available in your machine.

7. Start your server

Finally, you can run the command yarn dev (Windows: yarn dev:win) to start the server. This will serve both the frontend and the backend on port 3000.

8. Optional: Set up VSCode extensions

The debugging menu on VSCode, which relies on launch.json, has been populated with a couple of run options. One runs the server, while the other runs the unit tests. Both of these are enabled with breakpoints, and can be a great way for you too debug your code when necessary.

This project is set up to play nicely with VSCode Jest. It will run your tests in the background and also give you useful "debug" buttons for specific tests. Highly recommended for any backend work.

Installing VSCode GraphQL enables graphql syntax highlighting. Recommended for GQL work.

Useful docs

How to make your first pull request - Thank you, Julio Alcantara! How to create new entities How to sync your repo with updated code

Production config

If deploying to production, first place your config files in /etc/mintbean-v4/config/*. Then run yarn start.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].