Skip to content

Academic Project for Web Programming discipline at Faculdade Nova Roma - FGV

License

Notifications You must be signed in to change notification settings

MarceloKabbalah/web-project

Repository files navigation

Flask Issues - Project Under Development

GitHubPython versionFlask versionGithub Status GitHub last commitGitHub issuesCode Style Black

GitHub watchersGitHub starsGitHub forks

Academic Project for Web Programming discipline at Faculdade Nova Roma - FGV

How to run the project?

1. open terminal and direct it to the locations where the web-project is located.

2. Run the below command.

  • Clone this repository.
  • Create a pipenv with Python 3.7.5
  • Enable pipenv => (pipenv shell).
  • Install the dependencies.
  • Run!!!.
git clone https://github.com/MarceloKabbalah/web-project.git
cd web-project
pip3 install pipenv
pipenv shell
pip3 install -r requirements.txt
python run.py

3. To create new database for the user

  • Follow the first step
  • Type 'python' in terminal
from app import db
from app.models import User, Post
User.query.delete()
Post.query.delete()
db.session.commit()
exit()

4. To close the debug feature

  • Open run.py
  • Make 'debug=True' to 'debug=False' in app.run

Contributing

  1. Faça o fork do projeto (https://github.com/yourname/yourproject/fork)
  2. Crie uma branch para sua modificação (git checkout -b feature/fooBar)
  3. Faça o commit (git commit -am 'Add some fooBar')
  4. Push (git push origin feature/fooBar)
  5. Crie um novo Pull Request

About

Academic Project for Web Programming discipline at Faculdade Nova Roma - FGV

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published