Giter Club home page Giter Club logo

Comments (5)

micahstubbs avatar micahstubbs commented on July 29, 2024 3

it works! now have teamchatviz up and running locally 🎉
🙏 @OrKoN
👍 for adding the text to the README.md 😄

here's the emoji timeline for one of my teams:
screen shot 2016-07-31 at 1 57 21 pm

from teamchatviz.

OrKoN avatar OrKoN commented on July 29, 2024 2

thanks @micahstubbs I have added the steps to the README. I am happy that you like the project! Please let me know if you have further questions about the setup or if you have any ideas about improving the project or adding new features!

from teamchatviz.

OrKoN avatar OrKoN commented on July 29, 2024 1

Hi @micahstubbs,

in order to create a DB in Postgres you need to start psql. On Linux systems you can run sudo -u postgres psql. On OS X you can start it via the UI of Postgres.app.

Once you are in, you can run the following commands to create a user called teamchatviz with the password teamchatviz and a database called teamchatviz:

CREATE DATABASE teamchatviz;
CREATE ROLE teamchatviz WITH LOGIN CREATEDB PASSWORD 'teamchatviz';
ALTER USER teamchatviz VALID UNTIL 'infinity';
ALTER DATABASE teamchatviz OWNER TO teamchatviz;
GRANT ALL ON DATABASE teamchatviz TO teamchatviz;
\c teamchatviz
ALTER SCHEMA public OWNER TO teamchatviz;

Please let me know if this worked for you and I will add it to the README.

from teamchatviz.

micahstubbs avatar micahstubbs commented on July 29, 2024

starting psql from the postgres mac gui

screen shot 2016-07-31 at 1 35 01 pm

screen shot 2016-07-31 at 1 35 18 pm

screen shot 2016-07-31 at 1 35 25 pm

from teamchatviz.

micahstubbs avatar micahstubbs commented on July 29, 2024

I think the migration succeeded

screen shot 2016-07-31 at 1 41 00 pm

from teamchatviz.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.