generated from OPCODE-Open-Spring-Fest/template
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4c425c9
commit bf8c5b7
Showing
3 changed files
with
99 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,35 @@ | ||
# Project Tour | ||
|
||
* notes: | ||
* > Discuss about your project file structure | ||
* > what each folder is responsible | ||
* > then go through each file in folders and explain there purpose | ||
* > if possible create a doc system ( there are autogen docs available for most of the languages ) | ||
* > decide coding style , linting style and formatting style and other themes like variable naming etc. | ||
* > provide an example for existing function and tests system if possible | ||
* | ||
|
||
# MAKE SURE PROJECT MANAGERS UPDATE THIS MD | ||
## Folder Structure | ||
Folders: | ||
* .github | ||
* Contributor_Guide | ||
* Contributing.md:- Contributing guidlines. | ||
* Project_Tour.md:- Details of project. | ||
* commiting.md:- Commiting Guidelines | ||
* ISSUE_TEMPLATE | ||
* bug_report.yaml:- Template to raise a bug isssue. | ||
* feature_request.yaml:- Template to raise a bug isssue. | ||
* PULL_REQUEST_TEMPLATE | ||
* pr.md:- Template of pull request. | ||
* .husky:- For project managers. | ||
* android | ||
* assetes:- contains images, icons, animation ets. | ||
* ios | ||
* lib | ||
* pages:- Contains source code of different screen. | ||
* main.dart | ||
* linux | ||
* macos | ||
* test | ||
* web | ||
* windows | ||
Files: | ||
* .gitignore | ||
* CODE_OF_CONDUCT.md | ||
* README.md | ||
* analysis_options.yaml | ||
* commitlint.config.js | ||
* package-lock.json | ||
* package.json | ||
* pubspec.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,65 @@ | ||
# weather_app | ||
# Weather Forecast App | ||
|
||
A new Flutter project. | ||
## Introduction ✨ | ||
|
||
## Getting Started | ||
Weather forecast application provides real-time updates through OpenWeather API, utilizing a location detection plugin for accurate weather display based on device location. | ||
|
||
This project is a starting point for a Flutter application. | ||
|
||
A few resources to get you started if this is your first Flutter project: | ||
## Technologies Used 🧑💻 | ||
|
||
- [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab) | ||
- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook) | ||
* Flutter | ||
* Open WeatherAPI | ||
* Location Pligin | ||
|
||
For help getting started with Flutter development, view the | ||
[online documentation](https://docs.flutter.dev/), which offers tutorials, | ||
samples, guidance on mobile development, and a full API reference. | ||
|
||
|
||
## Contact 📱 | ||
|
||
If you have any questions or feedback, please reach out to us at [email protected]. 📧 | ||
|
||
|
||
|
||
### Setup | ||
|
||
To set up **code-a-licious** on your local machine, follow these steps: | ||
|
||
|
||
|
||
1. Fork the repository: | ||
- Click the "Fork" button at the top right corner of this repository's page on GitHub. This will create a copy of the repository in your GitHub account. | ||
|
||
2. Clone the forked repository: | ||
|
||
```bash | ||
git clone https://github.com/<yourusername>/todoapp.git | ||
``` | ||
|
||
3. Navigate to the project directory: | ||
```bash | ||
cd todoapp | ||
``` | ||
|
||
|
||
4. Install Node.js dependencies(make sure node is installed on your laptop): | ||
```bash | ||
npm i | ||
``` | ||
5. Create a new branch for your feature or bug fix. | ||
|
||
6. Install dependencies: | ||
|
||
```bash | ||
flutter pub get | ||
``` | ||
|
||
7. Run the application: | ||
|
||
```bash | ||
flutter run | ||
``` | ||
|
||
8. Make your changes and commit them. | ||
9. Push to the branch. | ||
10. Submit a pull request. | ||
|
||
You are good to go to make your contribution!! All the best. |